mirror of
https://github.com/Hopiu/django-tos.git
synced 2026-05-13 04:43:10 +00:00
64 lines
1.6 KiB
Python
64 lines
1.6 KiB
Python
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
SITE_ID = 1
|
|
SECRET_KEY = 'foobarbaz'
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'mydatabase'
|
|
}
|
|
}
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
)
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.core.context_processors.debug',
|
|
'django.core.context_processors.i18n',
|
|
'django.core.context_processors.media',
|
|
'django.core.context_processors.static',
|
|
'django.core.context_processors.tz',
|
|
'django.core.context_processors.request',
|
|
'django.contrib.messages.context_processors.messages',
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.sites',
|
|
'tos',
|
|
)
|
|
|
|
TEMPLATE_LOADERS = (
|
|
'django.template.loaders.app_directories.Loader',
|
|
'django.template.loaders.eggs.Loader',
|
|
)
|
|
|
|
ROOT_URLCONF = 'tos.tests.test_urls'
|
|
|
|
LOGIN_URL = '/login/'
|
|
|
|
import logging
|
|
logging.basicConfig(
|
|
level = logging.DEBUG,
|
|
format = '%(asctime)s %(levelname)s %(message)s',
|
|
)
|
|
|
|
|
|
# Django 1.7 compatibility:
|
|
import django
|
|
if hasattr(django, 'setup'):
|
|
django.setup()
|
|
|
|
if django.VERSION > (1, 6):
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|