docs: npm → bun
Some checks failed
CI / Check / Test (push) Has been cancelled

This commit is contained in:
2026-06-09 00:06:22 +02:00
parent 307113381f
commit 37ab24be74
2 changed files with 5 additions and 5 deletions

View File

@@ -166,12 +166,12 @@ Interactive API documentation is available at runtime:
The single-page app lives in `spa/` and is served at `/app/` by the backend. For local development:
```bash
cd spa && npm install && npm run dev # http://localhost:5173/app/
cd spa && bun install && bun run dev # http://localhost:5173/app/
```
Set `CORS_ORIGINS=http://localhost:5173` in the backend `.env` to allow cross-origin API calls during development.
For production, `npm run build` outputs to `spa/dist/` which the backend serves statically (included in Docker image automatically).
For production, `bun run build` outputs to `spa/dist/` which the backend serves statically (included in Docker image automatically).
## Terminal UI (deprecated)