mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Set to debug True by default.
This commit is contained in:
parent
75618d649b
commit
8e727cb940
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue