mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 06:04:18 +00:00
17 lines
322 B
Python
Executable file
17 lines
322 B
Python
Executable file
from .settings import * # NOQA
|
|
|
|
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
|