Use default Django secret key from settings.py

This commit is contained in:
Aarni Halinen
2020-07-16 00:48:01 +03:00
parent 67b31060b2
commit 76e1c71cd1
3 changed files with 3 additions and 11 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ if DEBUG:
ALLOWED_HOSTS = ["*"]
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.getenv('SECRET_KEY', '<your secret key>')
SECRET_KEY = os.getenv('SECRET_KEY', '7p$85^4ibb^p4-=vs44b7!y0e-zemugze18@a#30&71=a8)dp(')
# ReCaptcha
# http://www.yaconiello.com/blog/integrating-google-recaptcha-to-django/