mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-05-26 16:04:07 +00:00
19 lines
373 B
Python
19 lines
373 B
Python
|
|
DBTEMPLATES_CACHE_BACKEND = 'dummy://'
|
||
|
|
|
||
|
|
DATABASE_ENGINE = 'sqlite3'
|
||
|
|
|
||
|
|
SITE_ID = 1
|
||
|
|
|
||
|
|
INSTALLED_APPS = [
|
||
|
|
'django.contrib.contenttypes',
|
||
|
|
'django.contrib.sites',
|
||
|
|
'django.contrib.admin',
|
||
|
|
'dbtemplates',
|
||
|
|
]
|
||
|
|
|
||
|
|
TEMPLATE_LOADERS = (
|
||
|
|
'django.template.loaders.filesystem.Loader',
|
||
|
|
'django.template.loaders.app_directories.Loader',
|
||
|
|
'dbtemplates.loader.Loader',
|
||
|
|
)
|