Skip to content

Commit

Permalink
build: allow skipping init s3 bucket creation
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Nov 8, 2023
1 parent a477002 commit bca482f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/backend/app-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,9 @@ wait_for_s3 &
# Wait until checks complete
wait

create_s3_buckets
# Skip init S3 if env var passed
if [ -n "$SKIP_S3_INIT" ]; then
create_s3_buckets
fi

exec "$@"

0 comments on commit bca482f

Please sign in to comment.