pokeapi/config/local.py

18 lines
314 B
Python
Raw Normal View History

from .settings import *
2014-12-04 11:11:46 +00:00
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(PROJECT_ROOT, "db.sqlite3"),
2014-12-04 11:11:46 +00:00
}
}
2020-11-23 21:05:49 +00:00
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
}
}
2016-04-30 14:36:56 +00:00
2014-12-04 11:11:46 +00:00
DEBUG = True
TASTYPIE_FULL_DEBUG = True