@openscout/scout 0.2.13 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -58,5 +58,21 @@ scout down
58
58
  scout ps
59
59
  scout restart
60
60
  scout pair
61
+ scout server start
61
62
  scout tui
62
63
  ```
64
+
65
+ ### Web UI (`scout server start`)
66
+
67
+ Runs the same Scout desktop web stack as the repo’s `bun run web` entry (Hono + shared IPC services). **Bun must be on your PATH.** Publish builds ship `dist/scout-web-server.mjs` and `dist/client/` (Vite build); when `dist/client/index.html` is present, **`scout server start` defaults to static assets** unless you pass `--vite-url` to proxy a dev server.
68
+
69
+ ```bash
70
+ scout server start
71
+ scout server start --port 3200
72
+ scout server start --vite-url http://127.0.0.1:43173 # SPA dev server
73
+ scout server start --static --static-root /custom/client
74
+ ```
75
+
76
+ Use `scout server` or `scout server help` for full flags.
77
+
78
+ For a standalone **minimal** web UI (pairing QR and the current activity stream), see **`@openscout/web`** (`openscout-web`): it ships `dist/client` and runs **`scout server control-plane start --static --static-root …`** (requires `@openscout/scout` and Bun on `PATH`). The full desktop UI is vendored with the CLI build; the control-plane UI is vendored separately as `dist/control-plane-client`.
Binary file