selecting displayed columns on jobs page
[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 # Database
10 # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
11
12 DATABASES = {
13     'default': {
14         'ENGINE': 'django.db.backends.sqlite3',
15         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
16     }
17 }
18
19 DEBUG_TOOLBAR_CONFIG = {'JQUERY_URL': ''}