You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
445 B
18 lines
445 B
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 = 'q4jp+%&#i0ff5vv&c!2wt_z@ksvk4kg!ln@5+va+v_+m-9s(h8'
|
|
|
|
# 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
|
|
|