diff options
author | Filipp Lepalaan <f@230.to> | 2013-07-23 10:57:07 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-07-23 10:57:07 +0300 |
commit | b9fc1060406a433473faa70c236ba3e177640d26 (patch) | |
tree | 4770f41e256c70781df288fc701234a5eedf8958 /motor | |
parent | 71cba08024026bcb7dde03339572fc1f6907bad1 (diff) | |
download | motor.old-b9fc1060406a433473faa70c236ba3e177640d26.tar.gz motor.old-b9fc1060406a433473faa70c236ba3e177640d26.tar.bz2 motor.old-b9fc1060406a433473faa70c236ba3e177640d26.zip |
A few fixes
Diffstat (limited to 'motor')
-rw-r--r-- | motor/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/motor/settings.py b/motor/settings.py index 7b927ec..5afd5fa 100644 --- a/motor/settings.py +++ b/motor/settings.py @@ -4,11 +4,11 @@ import os import motor as project_module PROJECT_DIR = os.path.dirname(os.path.realpath(project_module.__file__)) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( - # ('Your Name', 'your_email@example.com'), + ('Filipp Lepalaan', 'support@servoapp.com'), ) MANAGERS = ADMINS @@ -27,7 +27,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 = ['*'] # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |