To install dependencies:
bun installTo start a development server:
bun devTo run for production:
bun startRun the app in Docker with live reload while editing files locally:
docker compose -f docker-compose.dev.yml up --buildStop it:
docker compose -f docker-compose.dev.yml downNotes:
- Source code is bind-mounted into the container for hot reload.
- Dependencies are kept in Docker-managed volumes (
bun_node_modules,bun_cache) for faster restarts. - The app is available at
http://localhost:3000.
This project was created using bun init in bun v1.3.0. Bun is a fast all-in-one JavaScript runtime.