**Motivations:** - Align IDE config directory naming with smartIde branding. **Evolutions:** - Move .cursor to .smartIde at repo root; ia_dev submodule same rename. - ia-dev-gateway resolves agents under .smartIde/agents. - Docs: smartide-config-directory.md, cross-link updates; enso-docs mirror unchanged.
21 lines
607 B
Markdown
21 lines
607 B
Markdown
# ia-dev-gateway (`services/ia-dev-gateway/`)
|
|
|
|
API HTTP pour le checkout **ia_dev** : liste des agents (`.smartIde/agents/*.md`), `POST /v1/runs` (complétion stub), SSE sur `/v1/runs/:id/events`. Branchement futur sur les scripts deploy / agents réels.
|
|
|
|
## Build / run
|
|
|
|
```bash
|
|
cd services/ia-dev-gateway
|
|
npm install
|
|
npm run build
|
|
export IA_DEV_GATEWAY_TOKEN='your-secret'
|
|
# optionnel : IA_DEV_ROOT=/chemin/vers/ia_dev
|
|
npm start
|
|
```
|
|
|
|
Écoute par défaut : **`127.0.0.1:37144`**.
|
|
|
|
## Contrats
|
|
|
|
[API/ia-dev-gateway.md](../API/ia-dev-gateway.md), [features/ia-dev-service.md](../features/ia-dev-service.md).
|