summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--local_settings.py.pip.sample4
-rw-r--r--local_settings.py.sample6
-rw-r--r--settings.py2
3 files changed, 7 insertions, 5 deletions
diff --git a/local_settings.py.pip.sample b/local_settings.py.pip.sample
index 6b6cffc..e88acec 100644
--- a/local_settings.py.pip.sample
+++ b/local_settings.py.pip.sample
@@ -5,6 +5,8 @@
import os
+ROOT_URLCONF = 'chimere_example_project.urls'
+
STATIC_URL = '/static/'
CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL
@@ -31,8 +33,6 @@ DATABASES = {
},
}
-ROOT_URLCONF = 'example_project.urls'
-
INSTALLED_APPS += ['django_extensions',
'tinymce']
diff --git a/local_settings.py.sample b/local_settings.py.sample
index b5939af..0d3252d 100644
--- a/local_settings.py.sample
+++ b/local_settings.py.sample
@@ -5,6 +5,10 @@
import os
+ROOT_URLCONF = 'chimere_example_project.urls'
+
+STATIC_URL = '/static/'
+
CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL
CHIMERE_OSM_USER = 'osm_user'
CHIMERE_OSM_PASSWORD = 'osm_pass'
@@ -28,5 +32,3 @@ DATABASES = {
'PASSWORD': '',
},
}
-
-ROOT_URLCONF = 'example_project.urls'
diff --git a/settings.py b/settings.py
index b0839d6..431d6b1 100644
--- a/settings.py
+++ b/settings.py
@@ -140,7 +140,7 @@ MIDDLEWARE_CLASSES = (
'django.contrib.messages.middleware.MessageMiddleware'
)
-ROOT_URLCONF = 'example_project.urls'
+ROOT_URLCONF = 'chimere_example_project.urls'
TEMPLATE_DIRS = [
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".