Files
Pinry/pinry/settings/development.py

17 lines
250 B
Python
Raw Normal View History

2012-04-26 03:44:16 +00:00
from pinry.settings import *
import os
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(SITE_ROOT, 'development.db'),
}
}
2012-08-01 21:30:18 +00:00
SECRET_KEY = 'fake-key'