pokeapi/config/local.py
2023-11-26 11:57:16 -04:00

16 lines
287 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