From d5ef58137407b12c91fcf4db479dcd9662efd88d Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 23 Dec 2013 13:13:40 +0100 Subject: Work on operation document generation --- example_project/local_settings.py.sample | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'example_project/local_settings.py.sample') 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 -- cgit v1.2.3