cached-storage-authors
All checks were successful
deploy / deploy (push) Successful in 1m3s

This commit is contained in:
2023-12-23 09:11:04 +03:00
parent e81eabd0d0
commit ce02ce0130
5 changed files with 141 additions and 85 deletions

View File

@@ -2,8 +2,8 @@ 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 "https://v2.discours.io/"
AUTH_URL = environ.get("AUTH_URL") or "https://v2.discours.io/"
API_BASE = environ.get("API_BASE") or "https://core.discours.io/"
AUTH_URL = environ.get("AUTH_URL") or "https://auth.discours.io/"
MODE = environ.get("MODE") or "production"
SENTRY_DSN = environ.get("SENTRY_DSN")
DEV_SERVER_PID_FILE_NAME = "dev-server.pid"