From e234925a86894ef99bb7d4bbc9093a86a1f0f0e2 Mon Sep 17 00:00:00 2001 From: Jason Heppler Date: Thu, 15 Aug 2024 10:18:12 -0500 Subject: [PATCH] refactor: Update dotenv configuration to load environment variables with verbose and override options --- config/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings.py b/config/settings.py index 1e1103b..f555f21 100644 --- a/config/settings.py +++ b/config/settings.py @@ -5,7 +5,7 @@ import environ from dotenv import load_dotenv -load_dotenv() +load_dotenv(verbose=True, override=True) # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve(strict=True).parent.parent