From c912bc1e127b665d78b1b46e53dcd086af620660 Mon Sep 17 00:00:00 2001 From: Peter Siemens Date: Thu, 23 Nov 2023 10:25:17 -0800 Subject: [PATCH] Revert change to .env file location --- config/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings/base.py b/config/settings/base.py index 5e71fa601..617668f7a 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -28,7 +28,7 @@ # Look for the environment variables file in the root directory # Absolute rather than relative path here, to play nice with Google App Engine -env_file = os.path.join(BASE_DIR, '.env') +env_file = os.path.join(BASE_DIR, 'tmp/.env') # In production we can get .envfrom Google Cloud if we don't have it. This requires authentication. if os.environ['DJANGO_SETTINGS_MODULE'] == 'config.settings.production' and not os.path.isfile(env_file):