mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-26 13:20:26 +00:00
12 lines
210 B
Python
12 lines
210 B
Python
|
from settings import *
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
DEBUG = True
|
||
|
TASTYPIE_FULL_DEBUG = True
|