**Motivations:** - Single canonical documentation tree under docs/; reduce drift between README copies. **Evolutions:** - Add docs/repo/ with operational guides (cron, systemd, projects, logs, docv, ia_dev, services, scripts, extension). - Replace scattered README.md files with pointers to docs/repo/*.md. - Refresh docs/README.md index and cross-links across docs/, .cursor rules/agents. - Bump ia_dev submodule to matching doc pointer commits.
21 lines
605 B
Markdown
21 lines
605 B
Markdown
# ia-dev-gateway (`services/ia-dev-gateway/`)
|
|
|
|
API HTTP pour le checkout **ia_dev** : liste des agents (`.cursor/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).
|