pokeapi/config/local.py

18 lines
322 B
Python
Raw Normal View History

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