Merge branch 'devel'
[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 PROXY_FILE = os.path.join(BASE_DIR, '../proxy')
10
11
12 INSTALLED_APPS += (
13     'sslserver',
14     'debug_toolbar'
15 )
16
17
18 # Database
19 # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
20
21 DATABASES = {
22     'default': {
23         'ENGINE': 'django.db.backends.sqlite3',
24         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
25     }
26 }
27
28 DEBUG_TOOLBAR_CONFIG = {'JQUERY_URL': '/static/qcg/jquery/jquery.min.js'}