- Click Code → Create codespace on main.
- In the terminal: cargo fmt --all cargo clippy --all -- -D warnings cargo test --all
- If you touched the UI: cd ui npm ci npm test
This page contains instructions on how to run everything locally.
Requirements:
- Rust 1.86+
- npm 10+
Build the agentgateway UI:
cd ui
npm install
npm run buildBuild the agentgateway binary:
cd ..
export CARGO_NET_GIT_FETCH_WITH_CLI=true
make buildRun the agentgateway binary:
./target/release/agentgatewayOpen your browser and navigate to http://localhost:15000/ui to see the agentgateway UI.