pokeapi/config/local.py
2018-10-20 11:35:11 -04:00

17 lines
314 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