initial-draft

This commit is contained in:
2023-11-24 01:58:55 +03:00
parent 7304735041
commit ec20a4ebcd
22 changed files with 996 additions and 0 deletions

9
settings.py Normal file
View File

@@ -0,0 +1,9 @@
from os import environ
PORT = 80
REDIS_URL = environ.get("REDIS_URL") or "redis://127.0.0.1"
API_BASE = environ.get("API_BASE") or ""
AUTH_URL = environ.get("AUTH_URL") or ""
MODE = environ.get("MODE") or "production"
SENTRY_DSN = environ.get("SENTRY_DSN")
DEV_SERVER_PID_FILE_NAME = "dev-server.pid"