|
@@ -12,6 +12,7 @@ https://docs.djangoproject.com/en/1.8/ref/settings/
|
|
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
import os
|
|
|
+import sys
|
|
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
@@ -19,9 +20,6 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
# Quick-start development settings - unsuitable for production
|
|
|
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
|
|
|
|
|
|
-# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
-SECRET_KEY = 'ii4gn&9@es!fny$c)-@@$#ynrzjgz&ssdp+9en1u0dpr@n^+h-'
|
|
|
-
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
DEBUG = True
|
|
|
|
|
@@ -111,3 +109,9 @@ PROVISIONING_DURATIONS = [
|
|
|
(datetime.timedelta(days=365*3), '3 ans'),
|
|
|
(datetime.timedelta(days=365*5), '5 ans'),
|
|
|
]
|
|
|
+
|
|
|
+try:
|
|
|
+ from .local_settings import *
|
|
|
+except ImportError:
|
|
|
+ sys.stderr.write('Create a local_settings.py, see README.md')
|
|
|
+ exit(1)
|