66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
|
import os
|
||
|
|
||
|
local_dir = lambda x: os.path.join(os.path.dirname(__file___), x)
|
||
|
|
||
|
SECRET_KEY = '1&=htv#6aawk=3rxo$9e)s7g)lt2!x4=04om__sod!v6!uv&6='
|
||
|
DEBUG = True
|
||
|
ALLOWED_HOSTS = ['*']
|
||
|
|
||
|
INSTALLED_APPS = (
|
||
|
'django.contrib.admin',
|
||
|
'django.contrib.auth',
|
||
|
'django.contrib.contenttypes',
|
||
|
'django.contrib.sessions',
|
||
|
'django.contrib.messages',
|
||
|
'django.contrib.staticfiles',
|
||
|
)
|
||
|
|
||
|
MIDDLEWARE_CLASSES = (
|
||
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
||
|
'django.middleware.common.CommonMiddleware',
|
||
|
'django.middleware.csrf.CsrfViewMiddleware',
|
||
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||
|
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
|
||
|
'django.contrib.messages.middleware.MessageMiddleware',
|
||
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||
|
'django.middleware.security.SecurityMiddleware',
|
||
|
)
|
||
|
|
||
|
ROOT_URLCONF = 'bornhack.urls'
|
||
|
|
||
|
TEMPLATES = [
|
||
|
{
|
||
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||
|
'DIRS': [local_dir('templates')],
|
||
|
'APP_DIRS': True,
|
||
|
'OPTIONS': {
|
||
|
'context_processors': [
|
||
|
'django.template.context_processors.debug',
|
||
|
'django.template.context_processors.request',
|
||
|
'django.contrib.auth.context_processors.auth',
|
||
|
'django.contrib.messages.context_processors.messages',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
]
|
||
|
|
||
|
WSGI_APPLICATION = 'bornhack.wsgi.application'
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
LANGUAGE_CODE = 'en-us'
|
||
|
TIME_ZONE = 'UTC'
|
||
|
USE_I18N = True
|
||
|
USE_L10N = True
|
||
|
USE_TZ = True
|
||
|
|
||
|
STATIC_URL = '/static/'
|
||
|
STATIC_ROOT = local_dir('static')
|
||
|
MEDIA_URL = '/media/'
|
||
|
MEDIA_ROOT = local_dir('media')
|