mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-05-25 23:33:52 +00:00
31 lines
564 B
Python
31 lines
564 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",
|
|
)
|
|
|
|
TEMPLATES = [
|
|
{
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
"APP_DIRS": True,
|
|
},
|
|
]
|