mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-26 05:10:21 +00:00
11 lines
219 B
Python
Executable file
11 lines
219 B
Python
Executable file
from .settings import * # NOQA
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'),
|
|
}
|
|
}
|
|
|
|
DEBUG = True
|
|
TASTYPIE_FULL_DEBUG = True
|