- Add ia_dev submodule (projects/smart_ide on forge 4nk) - Document APIs, orchestrator, gateway, local-office, rollout - Add systemd/scripts layout; relocate setup scripts - Remove obsolete nginx/enso-only docs from this repo scope
24 lines
606 B
Markdown
24 lines
606 B
Markdown
# ia-dev-gateway
|
|
|
|
HTTP API for the **ia_dev** checkout: lists agents from `.cursor/agents/*.md`, accepts `POST /v1/runs` (stub completion), SSE on `/v1/runs/:id/events`. Wire to real deploy/agent scripts later.
|
|
|
|
## Build / run
|
|
|
|
```bash
|
|
npm install
|
|
npm run build
|
|
export IA_DEV_GATEWAY_TOKEN='your-secret'
|
|
# optional: IA_DEV_ROOT=/path/to/ia_dev (default: ../../ia_dev from monorepo)
|
|
npm start
|
|
```
|
|
|
|
Default bind: `127.0.0.1:37144`.
|
|
|
|
## Contract
|
|
|
|
See [docs/API/ia-dev-gateway.md](../../docs/API/ia-dev-gateway.md) and [docs/features/ia-dev-service.md](../../docs/features/ia-dev-service.md).
|
|
|
|
## License
|
|
|
|
MIT
|