From 24e98d05cc4816cfa3e89cd3bcaccfcd22c9738e Mon Sep 17 00:00:00 2001 From: Tim McCormack <59623490+timmc-edx@users.noreply.github.com> Date: Wed, 16 Jul 2025 14:04:28 -0400 Subject: [PATCH] fix: Replace default secret key with placeholder This makes it clear that the field is unused and should be overridden. --- xqueue/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xqueue/settings.py b/xqueue/settings.py index b7d0674b..52b6b931 100644 --- a/xqueue/settings.py +++ b/xqueue/settings.py @@ -93,7 +93,7 @@ MEDIA_URL = '' # Make this unique, and don't share it with anybody. -SECRET_KEY = 'uofqkujp@z#_vtwct+v716z+^3hijelj1^fkydwo2^pbkxghfq' +SECRET_KEY = '[PLACEHOLDER]' DEFAULT_AUTO_FIELD = "django.db.models.AutoField"