Files
old-saburly-wagtail-web/saburly/settings/dev.py

20 lines
538 B
Python
Raw Normal View History

2024-08-27 20:33:44 +02: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-4u__7o5r4h=k@qn_wk-h5$u_+bwo&gzvz5oph#+cny(#2wt6+)"
# SECURITY WARNING: define the correct hosts in production!
ALLOWED_HOSTS = ["*"]
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
2024-09-11 23:05:33 +02:00
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
2024-08-27 20:33:44 +02:00
2024-09-11 23:05:33 +02:00
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')