diff options
author | luxagraf <sng@luxagraf.net> | 2012-10-15 12:41:09 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2012-10-15 12:41:09 -0400 |
commit | 5f9a90eb72ad0050f18cbbfee1092d06efe9ed8d (patch) | |
tree | a24da62f280a2419f9150404bcb03b8140f3ca13 /config/settings/settings.py | |
parent | 3b356bf9170317181313e2aa7e622490f69d61fe (diff) |
changed the way settings work so that remote and local both work (and I set the local version with some zsh scripts which is hacky, but it works for now
Diffstat (limited to 'config/settings/settings.py')
-rw-r--r-- | config/settings/settings.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config/settings/settings.py b/config/settings/settings.py index 850e232..b8560fb 100644 --- a/config/settings/settings.py +++ b/config/settings/settings.py @@ -1,4 +1,3 @@ -# Django settings for luxagraf. import os from os.path import dirname, abspath @@ -147,8 +146,5 @@ INSTALLED_APPS = ( 'pages' ) -DEVELOPMENT = True -if DEVELOPMENT: - INSTALLED_APPS += ('django_extensions',) - MEDIA_URL = 'http://127.0.0.1:8000/media/' + |