Skip to content

Commit

Permalink
馃悰 Fix secret placeholder.
Browse files Browse the repository at this point in the history
  • Loading branch information
tibonihoo committed Feb 12, 2023
1 parent 3b0e411 commit 71a69e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wateronmars/settings.py
Expand Up @@ -182,7 +182,7 @@

# Make this unique, and don't share it with anybody.
# see also https://docs.djangoproject.com/en/4.1/ref/settings/#std-setting-SECRET_KEY
SECRET_KEY = WOM_ROOT_URL = os.environ.get("WOM_DJANGO_SECRET_KEY", "") # Replace this !
SECRET_KEY = os.environ.get("WOM_DJANGO_SECRET_KEY", "") # Replace this !
if not SECRET_KEY:
raise Exception("Set 'SECRET_KEY' to a specific unique key !")

Expand Down

0 comments on commit 71a69e8

Please sign in to comment.