We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b38471f + b8fdf1f commit 3069cebCopy full SHA for 3069ceb
README.md
@@ -88,23 +88,24 @@ make docker.run
88
# .env
89
90
# Server settings:
91
-SERVER_URL="0.0.0.0:5000"
92
-SERVER_EMAIL="[email protected]"
93
-SERVER_EMAIL_PASSWORD="secret"
+SERVER_HOST="0.0.0.0"
+SERVER_PORT=5000
+SERVER_READ_TIMEOUT=60
94
95
# JWT settings:
96
JWT_SECRET_KEY="secret"
97
JWT_REFRESH_KEY="refresh"
98
99
# Database settings:
100
-DB_SERVER_URL="host=localhost port=5432 user=postgres password=password dbname=postgres sslmode=disable"
+DB_HOST="localhost"
101
+DB_PORT=5432
102
+DB_USER="postgres"
103
+DB_PASSWORD="password"
104
+DB_NAME="postgres"
105
+DB_SSL_MODE="disable"
106
DB_MAX_CONNECTIONS=100
107
DB_MAX_IDLE_CONNECTIONS=10
108
DB_MAX_LIFETIME_CONNECTIONS=2
-
-# SMTP severs settings:
-SMTP_SERVER="smtp.example.com"
-SMTP_PORT=25
109
```
110
111
## ⚠️ License
0 commit comments