1c36fb0e0c
Made some django 1.7 fixes and fixture corrections
48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
import os
|
|
local_path = lambda path: os.path.join(os.path.dirname(__file__), path)
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:'
|
|
}
|
|
}
|
|
|
|
SITE_ID = 1
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
)
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sites',
|
|
'django.contrib.sessions',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.auth',
|
|
'django.contrib.admin',
|
|
'bootstrapform',
|
|
]
|
|
|
|
ROOT_URLCONF = 'tests.urls'
|
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
MEDIA_ROOT = local_path('media')
|
|
|
|
STATICFILES_STORAGE = 'pipeline.storage.PipelineStorage'
|
|
STATIC_ROOT = local_path('static/')
|
|
STATIC_URL = '/static/'
|
|
STATICFILES_FINDERS = (
|
|
'django.contrib.staticfiles.finders.FileSystemFinder',
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder'
|
|
)
|
|
|
|
TEMPLATE_DIRS = (
|
|
local_path('templates'),
|
|
)
|
|
|
|
SECRET_KEY = 'django-bootstrap-form'
|