smart_ide/services/repos-devtools-server
Nicolas Cantu 088eab84b7 Platform docs, services, ia_dev submodule, smart_ide project config
- 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
2026-04-03 16:07:58 +02:00
..

repos-devtools-server

Local HTTP API on 127.0.0.1 for git operations under REPOS_DEVTOOLS_ROOT (default /home/ncantu/code).

After a successful POST /repos-clone, if the new repo has no .4nkaiignore, the server copies templates/4nkaiignore.default into the repository root. The response includes fourNkAiIgnoreTemplateWrote: boolean.

Environment

Variable Required Description
REPOS_DEVTOOLS_TOKEN yes Authorization: Bearer <token> on every request.
REPOS_DEVTOOLS_ROOT no Clone root (default /home/ncantu/code).
REPOS_DEVTOOLS_HOST no Bind address (default 127.0.0.1).
REPOS_DEVTOOLS_PORT no Port (default 37140).

Endpoints

  • POST /repos-clone — JSON { "url": "<git>", "branch": "test" } (branch optional).
  • GET /repos-list
  • POST /repos-load — JSON { "name": "<folder>" }

Run

npm install
npm run build
export REPOS_DEVTOOLS_TOKEN='…'
npm start

After upgrading, reload systemd if used: systemctl --user daemon-reload && systemctl --user restart repos-devtools-server.service.

Templates

Keep templates/4nkaiignore.default aligned with extensions/anythingllm-workspaces/templates/4nkaiignore.default in the monorepo when you change defaults.