]> git.0d.be Git - chloro.git/blobdiff - chloro/settings.py
settings: do not include a default secret key
[chloro.git] / chloro / settings.py
index 3fb408aa21aa0d31db7a38262112893cb3e05261..b29168d472c7c64de6c720ac1c7ebe7052972609 100644 (file)
@@ -20,7 +20,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 # See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
 
 # SECURITY WARNING: keep the secret key used in production secret!
-SECRET_KEY = 'cv)5m&o$$hwhl-a79_vyhs#04mq_p*p-xvyvoau%(6wef_by!y'
+SECRET_KEY = ''
 
 # SECURITY WARNING: don't run with debug turned on in production!
 DEBUG = True
@@ -73,7 +73,7 @@ WSGI_APPLICATION = 'chloro.wsgi.application'
 # https://docs.djangoproject.com/en/1.11/ref/settings/#databases
 
 DATABASES = {
-    'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),}
+    'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'chloro',},
 }
 
 
@@ -91,9 +91,9 @@ AUTH_PASSWORD_VALIDATORS = [
 # Internationalization
 # https://docs.djangoproject.com/en/1.11/topics/i18n/
 
-LANGUAGE_CODE = 'en-us'
+LANGUAGE_CODE = 'fr-be'
 
-TIME_ZONE = 'UTC'
+TIME_ZONE = 'Europe/Brussels'
 
 USE_I18N = True
 
@@ -112,3 +112,5 @@ local_settings_file = os.environ.get(
 )
 if os.path.exists(local_settings_file):
     exec(open(local_settings_file).read())
+
+assert SECRET_KEY