This commit is contained in:
2023-10-05 14:46:16 +03:00
parent 6aac6722f4
commit cff2530421
4 changed files with 2 additions and 233 deletions

View File

@@ -1,11 +1,6 @@
from os import environ
PORT = 8080
DB_URL = (
environ.get("DATABASE_URL")
or environ.get("DB_URL")
or "postgresql://postgres@localhost:5432/discoursio"
)
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 ""