diff options
author | Prashant S | 2019-09-04 13:57:35 +0530 |
---|---|---|
committer | GitHub | 2019-09-04 13:57:35 +0530 |
commit | d278765e338662810e7937c2150f999e97bd2d9b (patch) | |
tree | 68ad2e83b116ce685fc6d6d1a1a38fe85b6b1c6e | |
parent | 7cb3945f46f5cb6e10e51815ba7185adecfd2a8f (diff) | |
parent | 3c25ed2cd2851b96f324f56560f88a73c4550f82 (diff) | |
download | SciPy2019-d278765e338662810e7937c2150f999e97bd2d9b.tar.gz SciPy2019-d278765e338662810e7937c2150f999e97bd2d9b.tar.bz2 SciPy2019-d278765e338662810e7937c2150f999e97bd2d9b.zip |
Merge pull request #6 from prashantsinalkar/master
fixed secret key
-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 |