Dashboard not embedded

Aion server is running

The HTTP/JSON API, gRPC, and WebSocket endpoints on this port are live. This binary was built without the embed-dashboard feature, so the web UI is not bundled in.

Develop the dashboard (live, with hot reload)

Run the Vite dev server; it proxies API calls to this server via VITE_* config and CORS:

cd apps/aion-dashboard
bun install
bun run dev   # http://localhost:5173

Ship the dashboard inside this binary

Build the bundle, then build the server with the embed feature:

cargo xtask build-dashboard
cargo build -p aion-cli --features release   # or: -p aion-server --features embed-dashboard