Remove punctuation from secret key

Fix #1
This commit is contained in:
Gabriel Augendre 2023-01-27 10:28:37 +01:00
parent 81c9e8aab6
commit d5ed71483d

View file

@ -14,7 +14,7 @@ CONTRIB_DIR = PROJECT_ROOT / "contrib"
env = environ.Env(
DEBUG=(bool, False),
SECRET_KEY=(str, "{{ random_ascii_string(50, punctuation=True) }}"),
SECRET_KEY=(str, "{{ random_ascii_string(50, punctuation=False) }}"),
ALLOWED_HOSTS=(list, []),
DEBUG_TOOLBAR=(bool, True),
STATIC_ROOT=(Path, BASE_DIR / "public" / "static"),