Bugfixes in docker-compose and DB, gunicorn for prod, env vars for app host and port
This commit is contained in:
parent
2135126235
commit
71964355b7
8 changed files with 43 additions and 5 deletions
|
@ -20,6 +20,8 @@ class Settings(BaseSettings):
|
|||
debug: bool = False
|
||||
session_key: str = secrets.token_hex(32)
|
||||
csrf_key: str = secrets.token_hex(32)
|
||||
app_host: str = '127.0.0.1'
|
||||
app_port: int = 8000
|
||||
|
||||
|
||||
settings = Settings()
|
||||
|
|
Loading…
Add table
Reference in a new issue