Skip to content

Commit

Permalink
chore(root): Fix for get-remote-env-files
Browse files Browse the repository at this point in the history
Download secrets in .env.local for the web app to ensure that the secrets override the committed `.env` file for the Novu team.
  • Loading branch information
SokratisVidros committed Jun 3, 2024
1 parent 8b39c77 commit e23dbd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/get-remote-env-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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! ✅"

0 comments on commit e23dbd4

Please sign in to comment.