pokeapi/config/local.py

12 lines
210 B
Python
Raw Normal View History

2014-12-04 11:11:46 +00:00
from settings import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(PROJECT_ROOT, 'db.sqlite3'),
}
}
DEBUG = True
TASTYPIE_FULL_DEBUG = True