angrybeanie_wagtail/angrybeanie_cms/settings/dev.py

19 lines
460 B
Python
Raw Normal View History

2025-07-25 21:32:16 +10:00
from .base import *
# 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-#b#)d_1=d0q9+yfo5chao014csh6w3gqihh5*&)lhe!%hiwiui"
# SECURITY WARNING: define the correct hosts in production!
ALLOWED_HOSTS = ["*"]
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
try:
from .local import *
except ImportError:
pass