To start the development server run:
bun run devOpen http://localhost:3000/ with your browser to see the result.
Compile the service into a standalone Bun binary:
bun run buildThe binary is written to dist/Lucky and can be copied straight into minimal container images or executed on compatible Linux hosts.
Build a scratch-based container image that embeds the static binary:
podman build -t lucky:static .Run the container using rootless Podman:
podman run --rm -p 3000:3000 lucky:staticWhen you are done, remove the image to keep the local registry clean:
podman rmi lucky:static