gwift_old/gwift/settings/dev.py

34 lines
786 B
Python
Raw Normal View History

2016-09-30 13:20:12 +02:00
from .base import * # NOQA
2016-04-26 15:35:26 +02:00
# 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 = '5r4-zjux*_p7@^()pc+0sv(6rc@_vdjmce#!5!tx&qx7)opu$7'
for template_engine in TEMPLATES:
template_engine['OPTIONS']['debug'] = True
2016-09-30 13:20:12 +02:00
2016-04-26 15:35:26 +02:00
'''INSTALLED_APPS += [
'debug_toolbar',
]'''
# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = []
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
2016-05-02 13:45:25 +02:00
}
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
2016-09-30 13:20:12 +02:00
]