Prebuilt binaries
podman build -t gear-builds-local .podman run --rm -it \
-v "$PWD":/app:Z \
-w /app \
gear-builds-local \
sh -c "npm install"Make sure .env contains the AWS configuration, then pass it into the container:
podman run --rm -it \
--env-file .env \
-v "$PWD":/app:Z \
-w /app \
gear-builds-local \
sh -c "npm run gen:builds"This will create/update src/builds.json based on objects in the configured S3 bucket.
podman run --rm -it \
-v "$PWD":/app:Z \
-w /app \
-p 3000:3000 \
gear-builds-local \
sh -c "npm run dev"Then open:
http://localhost:3000