You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix inaccuracies found auditing docs against the code
Audited all repository docs against the v1.3.0 source and corrected
claims that no longer match the code:
- MISSION_API: command_source/trigger JSON shapes are internally tagged
({"type": ...}); inline uses `content` not `command`; remove the
non-existent GET /api/control/tree row; SSE status uses
`waiting_for_tool`; AutomationExecution exposes `variables_used`/`error`
(not `started_at`/`result_message`).
- WORKSPACE_API/WORKSPACES: drop the non-existent `tools` field and `stdin`
exec input; init log is /var/log/sandboxed-init.log; helper scripts are
sandboxed-network-up / sandboxed-tailscale-up.
- BACKEND_API: update-config response message no longer mentions a restart.
- install-docker: compose service is `sandboxed-sh`, volume `sandboxed-data`;
list all five MCP binaries; desktop stack is Wayland (Sway), not X11.
- install-native: remove the non-existent in-repo residential.json template
path; fix helper script names; dev server runs on :3001.
- DESKTOP_SETUP: env var is DESKTOP_DISPLAY (not DESKTOP_DISPLAY_START).
- dashboard README: JWT stored in localStorage; `bun dev` already serves :3001.
- android README: minSdk is 33 (Android 13).
- PROVIDER_HEALTH_CHECK: Z.AI health model is glm-4.7-flash.
- STREAMING/HERMES/mobile-app-reliability: src/api/control.rs is now
src/api/control/mod.rs.
- ASK_ASSISTANT_DESIGN: ask tool loop cap is 10 iterations.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: dashboard/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,13 @@ Developer-focused UI for monitoring and controlling the Sandboxed.sh backend.
11
11
cd dashboard
12
12
bun install
13
13
14
-
#If the backend is on :3000, run the dashboard on :3001 to avoid port conflicts.
15
-
PORT=3001 bun dev
14
+
#The dev server runs on :3001 (backend stays on :3000, so no port conflict).
15
+
bun dev
16
16
```
17
17
18
18
Configure the backend URL via:
19
19
-`NEXT_PUBLIC_API_URL` (defaults to `http://127.0.0.1:3000`)
20
20
21
21
## Auth
22
22
23
-
If the backend reports `auth_required=true` from `GET /api/health`, the dashboard will prompt for credentials and store a JWT in `sessionStorage`. In multi-user mode (`auth_mode=multi_user`), it asks for username + password.
23
+
If the backend reports `auth_required=true` from `GET /api/health`, the dashboard will prompt for credentials and store a JWT in `localStorage`. In multi-user mode (`auth_mode=multi_user`), it asks for username + password.
0 commit comments