Files
neuf-www/dnscms/dnscms/settings/dev.py
T
2026-08-03 00:47:34 +02:00

18 lines
487 B
Python

from .base import * # noqa: F403
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "django-insecure-)vcpmb1^#5*o#h(^qfr1za)serjn+njz9dkz2r&dk+-zvm&ip)"
# SECURITY WARNING: define the correct hosts in production!
ALLOWED_HOSTS = ["*"]
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
try:
from .local import * # noqa: F403
except ImportError:
pass