1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
INSTALLED_APPS = [
"django.contrib.auth",
"django.contrib.contenttypes",
"django_tables2",
"tests.app",
]
ROOT_URLCONF = "tests.app.urls"
SECRET_KEY = "this is super secret"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"APP_DIRS": True,
"OPTIONS": {"context_processors": ["django.template.context_processors.request"]},
}
]
TIME_ZONE = "Europe/Amsterdam"
USE_TZ = True
|