diff options
author | 2019-10-22 11:25:53 -0700 | |
---|---|---|
committer | 2019-10-22 11:25:53 -0700 | |
commit | 0f23ba21b0f3128383d7351062d9ee58a1beadb4 (patch) | |
tree | 9ce3c545d298ad9b581123ffea2b283eec3d0925 /pydis_site/settings.py | |
parent | Add bulma content class to home page content for proper formatti⦠(#291) (diff) | |
parent | Set SECRET_KEY to constant in debug mode (diff) |
Merge pull request #297 from python-discord/constant-debug-secret-key
Set SECRET_KEY to a constant in DEBUG mode
Diffstat (limited to 'pydis_site/settings.py')
-rw-r--r-- | pydis_site/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 56ac0a1d..94718ec7 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -48,7 +48,7 @@ if DEBUG: 'staff.web' ] ) - SECRET_KEY = secrets.token_urlsafe(32) + SECRET_KEY = "yellow polkadot bikini" # noqa: S105 elif 'CI' in os.environ: ALLOWED_HOSTS = ['*'] |