CLI distribution package for running Burns without the web dev server workflow.
- Bun
1.2.x - Repository checkout containing
apps/daemonandapps/web
Run from repository root:
bun run apps/cli/src/bin.ts --helpor from the package directory:
cd apps/cli
bun run src/bin.ts --helpStarts daemon and (when available) serves prebuilt web assets from dist/web.
burns startOptions:
--open: open a web URL in your browser after daemon startup--web-url <url>: URL opened by--open(default:http://127.0.0.1:4173)
Starts daemon only.
burns daemonServes static web assets from dist/web.
burns webOptions:
--host <host>: bind host (default:127.0.0.1)--port <port>: bind port (default:4173)--open: open served URL in your browser
If dist/web is missing, the CLI prints guidance to run:
bun run build:web- The CLI reuses daemon startup by importing
apps/daemon/src/bootstrap/daemon-lifecycle.ts. - Default daemon API URL is
http://localhost:7332.
Build a CLI artifact tarball for release collection:
bun run build:artifactThis writes an archive into dist/cli via scripts/release/build-cli-artifact.sh.