Skip to content

Commit 3069ceb

Browse files
author
Vic Shóstak
authored
Merge pull request #14 from create-go-app/dev
Update README
2 parents b38471f + b8fdf1f commit 3069ceb

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,23 +88,24 @@ make docker.run
8888
# .env
8989

9090
# Server settings:
91-
SERVER_URL="0.0.0.0:5000"
92-
SERVER_EMAIL="[email protected]"
93-
SERVER_EMAIL_PASSWORD="secret"
91+
SERVER_HOST="0.0.0.0"
92+
SERVER_PORT=5000
93+
SERVER_READ_TIMEOUT=60
9494

9595
# JWT settings:
9696
JWT_SECRET_KEY="secret"
9797
JWT_REFRESH_KEY="refresh"
9898

9999
# Database settings:
100-
DB_SERVER_URL="host=localhost port=5432 user=postgres password=password dbname=postgres sslmode=disable"
100+
DB_HOST="localhost"
101+
DB_PORT=5432
102+
DB_USER="postgres"
103+
DB_PASSWORD="password"
104+
DB_NAME="postgres"
105+
DB_SSL_MODE="disable"
101106
DB_MAX_CONNECTIONS=100
102107
DB_MAX_IDLE_CONNECTIONS=10
103108
DB_MAX_LIFETIME_CONNECTIONS=2
104-
105-
# SMTP severs settings:
106-
SMTP_SERVER="smtp.example.com"
107-
SMTP_PORT=25
108109
```
109110

110111
## ⚠️ License

0 commit comments

Comments
 (0)