mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-04-10 18:11:07 +00:00
24 lines
438 B
Python
24 lines
438 B
Python
"""
|
|
django-analytical testing settings.
|
|
"""
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:',
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.sites',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.auth',
|
|
'analytical',
|
|
]
|
|
|
|
SECRET_KEY = 'testing'
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
)
|