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 0d3252d..33a4989 100644 --- a/local_settings.py.sample +++ b/local_settings.py.sample @@ -3,16 +3,18 @@ # rename this file to local_settings.py and overload settings in this file -import os ROOT_URLCONF = 'chimere_example_project.urls' STATIC_URL = '/static/' -CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL +CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL CHIMERE_OSM_USER = 'osm_user' CHIMERE_OSM_PASSWORD = 'osm_pass' +# if you want to use tinymce provide an URL or a relative path to find it +TINYMCE_URL = '' + # Make this string unique, and don't share it with anybody. SECRET_KEY = '' |