mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 19:05:18 +00:00
20 lines
400 B
Text
20 lines
400 B
Text
---
|
|
title: "Frontend Demo"
|
|
description: "Run the Vite + React UI for testing the daemon."
|
|
---
|
|
|
|
The demo frontend lives at `frontend/packages/web`.
|
|
|
|
## Run locally
|
|
|
|
```bash
|
|
pnpm install
|
|
pnpm --filter @sandbox-agent/web dev
|
|
```
|
|
|
|
The UI expects:
|
|
|
|
- Endpoint (e.g. `http://127.0.0.1:2468`)
|
|
- Optional token
|
|
|
|
If you see CORS errors, enable CORS on the daemon with `--cors-allow-origin` and related flags.
|