|
|
|
@ -7,6 +7,7 @@ https://docs.djangoproject.com/en/1.8/topics/settings/ |
|
|
|
For the full list of settings and their values, see |
|
|
|
https://docs.djangoproject.com/en/1.8/ref/settings/ |
|
|
|
""" |
|
|
|
from dj_database_url import parse as db_url |
|
|
|
from unipath import Path |
|
|
|
|
|
|
|
from .temp_suppress_crispy_form_warnings import \ |
|
|
|
@ -18,10 +19,10 @@ BASE_DIR = Path(__file__).ancestor(2) |
|
|
|
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ |
|
|
|
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret! |
|
|
|
SECRET_KEY = '!9g1-#la+#(oft(v-y1qhy$jk-2$24pdk69#b_jfqyv!*%a_)t' |
|
|
|
SECRET_KEY = 'TravisTest' |
|
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production! |
|
|
|
DEBUG = True |
|
|
|
DEBUG = False |
|
|
|
|
|
|
|
ALLOWED_HOSTS = ['*'] |
|
|
|
|
|
|
|
@ -180,4 +181,4 @@ SASS_PROCESSOR_INCLUDE_DIRS = (BOWER_COMPONENTS_ROOT.child( |
|
|
|
# FIXME update cripy-forms and remove this |
|
|
|
# hack to suppress many annoying warnings from crispy_forms |
|
|
|
# see sapl.temp_suppress_crispy_form_warnings |
|
|
|
LOGGING = SUPRESS_CRISPY_FORM_WARNINGS_LOGGING |
|
|
|
LOGGING = SUPRESS_CRISPY_FORM_WARNINGS_LOGGING |
|
|
|
|