From 884347965353d6c60f54e33ba73572a42dda700a Mon Sep 17 00:00:00 2001 From: Joey Aghion Date: Thu, 9 Nov 2023 12:59:44 -0500 Subject: [PATCH] chore: simplify S3 path for shared configuration --- scripts/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup.sh b/scripts/setup.sh index edd92cd..dc27a7f 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -20,7 +20,7 @@ echo "Installing dependencies..." yarn install || (npm install --global yarn@latest && yarn install) echo 'Updating .env file (for shared configuration)...' -aws s3 cp s3://artsy-citadel/dev/.env.joule .env || 'Unable to download shared configuration, ensure you have S3 access!' +aws s3 cp s3://artsy-citadel/joule/.env ./ || 'Unable to download shared configuration, ensure you have S3 access!' echo 'Setup complete! To start the server, run: yarn start'