Add readme about docker, remove postgres.conf from git

This commit is contained in:
Guntis Smaukstelis
2023-10-24 19:59:52 +03:00
parent 6819aa3166
commit 4dddcbff03
3 changed files with 10 additions and 3 deletions
+1
View File
@@ -1,4 +1,5 @@
src/main/resources/application.conf
src/main/resources/postgres.conf
target/
project/target/
+9
View File
@@ -36,3 +36,12 @@ npm run dev
- Docker
- Shell script
- Fly.io
## Docker
```
docker pull postgres
docker run --name local-postgres -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d postgres
docker stop local-postgres
docker start local-postgres
```
-3
View File
@@ -1,3 +0,0 @@
username = "postgres"
password = "mysecretpassword"
url = "jdbc:postgresql://localhost:5432/weather-tool"