Rework settings, add apps.py, preping for django 1.10 upgrade

This commit is contained in:
Isaac Bythewood
2016-11-28 16:58:34 -05:00
parent 78f1fbdb30
commit 6bb7a96ddc
9 changed files with 170 additions and 131 deletions

View File

@@ -1,17 +0,0 @@
from pinry.settings import *
import os
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ALLOWED_HOSTS = ['*']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(SITE_ROOT, 'development.db'),
}
}
SECRET_KEY = 'fake-key'