diff options
-rwxr-xr-x | Scipy2019/config.py | 3 | ||||
-rw-r--r-- | Scipy2019/settings.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Scipy2019/config.py b/Scipy2019/config.py index 73059c0..9a08952 100755 --- a/Scipy2019/config.py +++ b/Scipy2019/config.py @@ -1,8 +1,9 @@ -DB_NAME_DEFAULT = 'SciPy2019' +DB_NAME_DEFAULT = 'scipy2019' DB_USER_DEFAULT = 'root' DB_PASS_DEFAULT = 'root' DB_HOST_DEFAULT = 'localhost' DB_PORT_DEFAULT = '' +SECRET_KEY_VAL = '' ######################################## GOOGLE_KEY = 'GOOGLE_KEY' GOOGLE_SECRET = 'GOOGLE_SECRET' diff --git a/Scipy2019/settings.py b/Scipy2019/settings.py index c7434d0..ba34dfd 100644 --- a/Scipy2019/settings.py +++ b/Scipy2019/settings.py @@ -22,7 +22,7 @@ PROJECT_DIR = os.path.abspath(os.path.dirname(__file__) + '/../') # See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = '(-ch5+l^7w4zd3*f*qjg_pg#)=l3=g-&8+wfecl&a01a%kg)up' +SECRET_KEY = SECRET_KEY_VAL # SECURITY WARNING: don't run with debug turned on in production! DEBUG = DEBUG_VAL |