summaryrefslogtreecommitdiff
path: root/jthanio/settings/dev.py
blob: 14d9ee44381b3ac180a4ebacad4c4eae456c7681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 = 'hwq)dss*tg_p#ryuqvr)d*hk3785$13r=#kffh++1-de_5za!y'

# 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