Files
smokereal1771272523/smokereal1771272523/settings/env/stg.py
Mandel Dashboard 68d5852bac initial commit
2026-02-16 21:08:44 +01:00

17 lines
472 B
Python

from ..base import * # pylint:disable=W0401,W0614
try:
from smokereal1771272523.json import * # pylint:disable=W0401,W0614,E0611,E0401
except ModuleNotFoundError:
pass
DEBUG = False
STATIC_ROOT = "/srv/www/smokereal1771272523/static/"
MEDIA_ROOT = "/srv/www/smokereal1771272523/media/"
PRIVATE_MEDIA_ROOT = "/srv/www/smokereal1771272523/private/"
ALLOWED_HOSTS = ["*"]
# Force mail to console
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"