apps/node 중심 구현 — TCP+JSON transport, Hexagonal Architecture, mock/cli adapter, fx DI, SQLite 실행 이력 저장. edge/control-plane/worker는 cobra placeholder. 유닛 테스트 및 통합 테스트 클라이언트 계획서 추가.
57 lines
859 B
YAML
57 lines
859 B
YAML
node:
|
|
id: "node-001"
|
|
name: "iop-node-local"
|
|
|
|
transport:
|
|
listen: "0.0.0.0:9090"
|
|
|
|
tls:
|
|
enabled: false
|
|
cert: "certs/node.crt"
|
|
key: "certs/node.key"
|
|
ca: "certs/ca.crt"
|
|
|
|
runtime:
|
|
concurrency: 4
|
|
workspace_root: "/tmp/iop/workspace"
|
|
|
|
sqlite:
|
|
dsn: "file:iop.db?cache=shared&mode=rwc"
|
|
|
|
logging:
|
|
level: "info" # debug | info | warn | error
|
|
|
|
metrics:
|
|
port: 9091
|
|
|
|
adapters:
|
|
ollama:
|
|
enabled: false
|
|
base_url: "http://localhost:11434"
|
|
|
|
vllm:
|
|
enabled: false
|
|
endpoint: "http://localhost:8000"
|
|
|
|
cli:
|
|
enabled: false
|
|
profiles:
|
|
claude:
|
|
command: "claude"
|
|
args: []
|
|
env: []
|
|
|
|
gemini:
|
|
command: "gemini"
|
|
args: []
|
|
env: []
|
|
|
|
codex:
|
|
command: "codex"
|
|
args: []
|
|
env: []
|
|
|
|
opencode:
|
|
command: "opencode"
|
|
args: []
|
|
env: []
|