10BC0
Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 730 Bytes

File metadata and controls

45 lines (33 loc) · 730 Bytes

Quickstart (GitHub, no local install)

  1. Click Code → Create codespace on main.
  2. In the terminal: cargo fmt --all cargo clippy --all -- -D warnings cargo test --all
  3. If you touched the UI: cd ui npm ci npm test

Local Development

This page contains instructions on how to run everything locally.

Build from Source

Requirements:

  • Rust 1.86+
  • npm 10+

Build the agentgateway UI:

cd ui
npm install
npm run build

Build the agentgateway binary:

cd ..
export CARGO_NET_GIT_FETCH_WITH_CLI=true
make build

Run the agentgateway binary:

./target/release/agentgateway

Open your browser and navigate to http://localhost:15000/ui to see the agentgateway UI.

0