Set to debug True by default.

This commit is contained in:
Martin Mahner 2013-11-25 19:36:50 +01:00
parent 75618d649b
commit 8e727cb940

View file

@ -5,7 +5,7 @@ from django.conf.global_settings import *
# Generic Django project settings # Generic Django project settings
#============================================================================== #==============================================================================
DEBUG = False DEBUG = True
TEMPLATE_DEBUG = DEBUG TEMPLATE_DEBUG = DEBUG
# Local time zone for this installation. Choices can be found here: # Local time zone for this installation. Choices can be found here:
@ -21,6 +21,7 @@ ALLOWED_HOSTS = (
'www.dpaste.de', 'www.dpaste.de',
'dpaste.org', 'dpaste.org',
'www.dpaste.org', 'www.dpaste.org',
'127.0.0.1',
) )
SECRET_KEY = 'CHANGE_ME' SECRET_KEY = 'CHANGE_ME'
@ -48,7 +49,6 @@ PROJECT_DIR, PROJECT_MODULE_NAME = os.path.split(
os.path.dirname(os.path.realpath(dpaste.__file__)) os.path.dirname(os.path.realpath(dpaste.__file__))
) )
# Set the variable root to $VIRTUALENV/var. # Set the variable root to $VIRTUALENV/var.
PYTHON_BIN = os.path.dirname(sys.executable) PYTHON_BIN = os.path.dirname(sys.executable)