feat(status-ui): improve bridge recovery and desktop controls
This commit is contained in:
+12
-6
@@ -16,19 +16,25 @@ From the repository root:
|
||||
|
||||
```bash
|
||||
npm --prefix ui ci
|
||||
node src/bridge/cli.js --worktree "$HOME"
|
||||
npm --prefix ui run tauri dev
|
||||
```
|
||||
|
||||
The second command starts the bridge; run it in a separate terminal. The Tauri app connects to it on startup.
|
||||
The UI needs a running bridge. For day-to-day use, keep it in the background with the root project's `npm run bridge:service:install` command. For foreground development, run the bridge in a separate terminal:
|
||||
|
||||
```bash
|
||||
node src/bridge/cli.js --worktree "$HOME"
|
||||
```
|
||||
|
||||
The Tauri app connects to the bridge on startup. See the [root README](../README.md#keep-the-bridge-running-in-the-background-recommended) for start, restart, status, and log commands.
|
||||
|
||||
## Commands
|
||||
|
||||
```bash
|
||||
npm --prefix ui run dev # Vite frontend only
|
||||
npm --prefix ui run build # typecheck and build frontend assets
|
||||
npm --prefix ui run tauri dev # run the desktop client
|
||||
npm --prefix ui run tauri build # package a desktop bundle
|
||||
npm --prefix ui run dev # Vite frontend only
|
||||
npm --prefix ui run build # typecheck and build frontend assets
|
||||
npm --prefix ui run tauri dev # run the desktop client in development
|
||||
npm --prefix ui run tauri:release # build the production executable used by Noctalia/Mod+Space
|
||||
npm --prefix ui run tauri build # package installers (requires platform bundle tooling)
|
||||
```
|
||||
|
||||
## Boundaries
|
||||
|
||||
Reference in New Issue
Block a user