minor logging refactoring
[qcg-portal.git] / plgng / settings.py
1 from settings_common import *
2
3 SECRET_KEY = 'x%_rlnhibsxum1m5o_c5ac@p0nw+1r0&#k!v3+52)s(d=2$5y&'
4
5 # SECURITY WARNING: don't run with debug turned on in production!
6 DEBUG = True
7 TEMPLATE_DEBUG = True
8
9
10 INSTALLED_APPS += (
11     'sslserver',
12     'debug_toolbar'
13 )
14
15
16 # Database
17 # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
18
19 DATABASES = {
20     'default': {
21         'ENGINE': 'django.db.backends.sqlite3',
22         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
23     }
24 }
25
26 DEBUG_TOOLBAR_CONFIG = {'JQUERY_URL': ''}