diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-12-23 13:13:40 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-12-23 13:13:40 +0100 |
commit | b4dd6850d5bbe0e75bdcdfdd7d06ff28d3ebfc99 (patch) | |
tree | 30aba2cf351641d5fe1effb49c82a60612e5c742 /example_project/local_settings.py.sample | |
parent | 7f9d0d320f905d22a60089b9d19919f9d30bcd81 (diff) | |
download | Ishtar-b4dd6850d5bbe0e75bdcdfdd7d06ff28d3ebfc99.tar.bz2 Ishtar-b4dd6850d5bbe0e75bdcdfdd7d06ff28d3ebfc99.zip |
Work on operation document generation
Diffstat (limited to 'example_project/local_settings.py.sample')
-rw-r--r-- | example_project/local_settings.py.sample | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/example_project/local_settings.py.sample b/example_project/local_settings.py.sample index 901c7d3a8..f8f0f3e75 100644 --- a/example_project/local_settings.py.sample +++ b/example_project/local_settings.py.sample @@ -23,9 +23,11 @@ DATABASES = { }, } +BASE_URL = "http://mydomain/" + ROOT_URLCONF = 'example_project.urls' -STATIC_URL = 'http://mydomain/static/' -MEDIA_URL = 'http://mydomain/media/' +STATIC_URL = BASE_URL + 'static/' +MEDIA_URL = BASE_URL + 'mydomain/media/' DEBUG = False DEBUG_TOOLBAR = False |