diff options
-rw-r--r-- | PythonTBC/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 46131a9..dbec227 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -3,7 +3,7 @@ from os.path import * from .local import * -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG @@ -29,7 +29,7 @@ DATABASES = { # Hosts/domain names that are valid for this site; required if DEBUG is False # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ["localhost"] # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |