pokeapi/config/local.py
2020-02-24 13:18:14 +13:00

13 lines
294 B
Python
Executable file

from .settings import *
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(PROJECT_ROOT, "db.sqlite3"),
}
}
CACHES = {"default": {"BACKEND": "django.core.cache.backends.dummy.DummyCache",}}
DEBUG = True
TASTYPIE_FULL_DEBUG = True