From e23dbd4b141a8219c41b87ad5325a816341e03be Mon Sep 17 00:00:00 2001 From: Sokratis Vidros Date: Mon, 3 Jun 2024 13:34:51 +0300 Subject: [PATCH] chore(root): Fix for get-remote-env-files Download secrets in .env.local for the web app to ensure that the secrets override the committed `.env` file for the Novu team. --- scripts/get-remote-env-files.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/get-remote-env-files.sh b/scripts/get-remote-env-files.sh index 73538abc5a9..405af71b6a2 100644 --- a/scripts/get-remote-env-files.sh +++ b/scripts/get-remote-env-files.sh @@ -12,6 +12,7 @@ echo "Downloading secrets for the Worker..." doppler secrets download --project worker --config dev --no-file --format env > apps/worker/src/.env echo "Downloading secrets for the Web app..." -doppler secrets download --project web --config dev --no-file --format env > apps/web/src/.env +doppler secrets download --project web --config dev --no-file --format env > apps/web/.env.local + echo "All done! ✅"