From 3ad75c2f0d451393e08a672a230c8a18925f561f Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 29 Jul 2021 11:13:54 +0200 Subject: [PATCH] feat: Use generic env var name --- userausfall/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userausfall/settings.py b/userausfall/settings.py index b613d19..0c053fa 100644 --- a/userausfall/settings.py +++ b/userausfall/settings.py @@ -19,7 +19,7 @@ DATA_DIR = os.environ.get("USERAUSFALL_DATA_DIR", BASE_DIR) # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = os.environ.get('USERAUSFALL_SECRET_KEY') +SECRET_KEY = os.environ.get('LOCAL_DJANGO_SECRET_KEY') # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True