Push DEBUG to the env

This commit is contained in:
Jonathan Cremin 2015-01-18 01:59:24 +00:00
parent edd3b8032b
commit bb59637d8f

View file

@ -14,8 +14,8 @@ import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
DEBUG = os.environ['DEBUG']
TEMPLATE_DEBUG = os.environ['DEBUG']
SECRET_KEY = os.environ['SECRET_KEY']