diff options
Diffstat (limited to 'local_settings.py.sample')
-rw-r--r-- | local_settings.py.sample | 6 |
1 files changed, 4 insertions, 2 deletions
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' |