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! ✅"