File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -88,23 +88,24 @@ make docker.run
88
88
# .env
89
89
90
90
# Server settings:
91
- SERVER_URL =" 0.0.0.0:5000 "
92
- SERVER_EMAIL = " no-reply@example.com "
93
- SERVER_EMAIL_PASSWORD = " secret "
91
+ SERVER_HOST =" 0.0.0.0"
92
+ SERVER_PORT =5000
93
+ SERVER_READ_TIMEOUT =60
94
94
95
95
# JWT settings:
96
96
JWT_SECRET_KEY =" secret"
97
97
JWT_REFRESH_KEY =" refresh"
98
98
99
99
# 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"
101
106
DB_MAX_CONNECTIONS =100
102
107
DB_MAX_IDLE_CONNECTIONS =10
103
108
DB_MAX_LIFETIME_CONNECTIONS =2
104
-
105
- # SMTP severs settings:
106
- SMTP_SERVER =" smtp.example.com"
107
- SMTP_PORT =25
108
109
```
109
110
110
111
## ⚠️ License
You can’t perform that action at this time.
0 commit comments