From c3637d3dd6ac636a57c8c0a4f27e945d465462d7 Mon Sep 17 00:00:00 2001 From: Sokratis Vidros Date: Tue, 21 May 2024 16:12:33 +0300 Subject: [PATCH] chore(root): Set NOVU_ENTERPRISE to doppler Local development environment for novu-team should operate with NOVU_ENTERPRISE=true by default. --- scripts/get-remote-env-files.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/get-remote-env-files.sh b/scripts/get-remote-env-files.sh index f6809bd6d0e..73538abc5a9 100644 --- a/scripts/get-remote-env-files.sh +++ b/scripts/get-remote-env-files.sh @@ -8,4 +8,10 @@ doppler secrets download --project nx --config dev --no-file --format env > nx-c echo "Downloading secrets for the API..." doppler secrets download --project api --config dev --no-file --format env > apps/api/src/.env +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 + echo "All done! ✅"