summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-07 21:02:54 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-07 21:02:54 +0200
commitd8d49648aec7440f0b9b29ddec79842edd3e8d35 (patch)
treef3aedf31ea9c40a79782db516651634e99f2aeeb
parent59dca39274104f20a4d0c2ce0537feac18a168e1 (diff)
downloadChimère - projet de référence-d8d49648aec7440f0b9b29ddec79842edd3e8d35.tar.bz2
Chimère - projet de référence-d8d49648aec7440f0b9b29ddec79842edd3e8d35.zip
Documentation/configuration: fix path, add dependancies
-rw-r--r--local_settings.py.sample3
-rw-r--r--settings.py8
2 files changed, 3 insertions, 8 deletions
diff --git a/local_settings.py.sample b/local_settings.py.sample
index 9ccd41d..b5939af 100644
--- a/local_settings.py.sample
+++ b/local_settings.py.sample
@@ -9,6 +9,9 @@ CHIMERE_OSM_API_URL = 'api06.dev.openstreetmap.org' # test URL
CHIMERE_OSM_USER = 'osm_user'
CHIMERE_OSM_PASSWORD = 'osm_pass'
+# Make this string unique, and don't share it with anybody.
+SECRET_KEY = ''
+
ADMINS = (
# ('Your Name', 'your_email@domain.com'),
)
diff --git a/settings.py b/settings.py
index 6aaa577..1b72dad 100644
--- a/settings.py
+++ b/settings.py
@@ -122,14 +122,6 @@ MEDIA_ROOT = ROOT_PATH + 'media/'
# Example: "http://media.lawrence.com"
MEDIA_URL = '/media/'
-# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
-# trailing slash.
-# deprecated in Django 1.4 but left for Django 1.3
-ADMIN_MEDIA_PREFIX = '/admin-media/'
-
-# Make this unique, and don't share it with anybody.
-SECRET_KEY = 'achanger_!ToChange!'
-
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',