ddf20abc7e
Adds VOR_WORLDTREE_KEY + VOR_WORLDTREE_BASE + VOR_WORLDTREE_MODEL to vor's compose environment with sane defaults. Empty key falls back to the in-process MockWorldtree (the /mockup/ surface returns canned fixtures); a real key issued by architect routes LLM calls at the demo Saga instance. Key itself lives in ana-docker:/opt/docker/compose/vor/.env (not in the repo).
28 lines
1.1 KiB
Bash
28 lines
1.1 KiB
Bash
# Built locally from vh/vor by the deploy playbook; not pulled from a registry.
|
|
VOR_IMAGE=vor:local
|
|
|
|
# Host port. Adjacent to task-board's 7878 since both are claude-tooling
|
|
# sidecars; keep them grouped for muscle memory.
|
|
VOR_PORT=7879
|
|
VOR_BIND=0.0.0.0
|
|
|
|
# Persistence — sessions/ holds Claude's posted markdown,
|
|
# responses/ holds the user's published response markdown. Both are
|
|
# bind-mounted so they survive `docker compose up --force-recreate`.
|
|
VOR_SESSIONS_DIR=/opt/docker/conf/vor/sessions
|
|
VOR_RESPONSES_DIR=/opt/docker/conf/vor/responses
|
|
|
|
# Worldtree integration — bearer token for the demo Saga instance.
|
|
# Dev-tier Heimdall key, scoped `instantiate:saga`. Without this, the
|
|
# /mockup/ surface falls back to an in-process MockWorldtree (canned
|
|
# fixtures) — boot log shows `WT: in-process mock (...)` instead of
|
|
# `WT: real Worldtree at ...`. The legacy / + /api/sessions endpoints
|
|
# work either way. Issued by architect; rotatable.
|
|
VOR_WORLDTREE_KEY=
|
|
|
|
# Worldtree instance — defaults to the v1 demo Saga.
|
|
VOR_WORLDTREE_BASE=http://10.250.50.152:8080
|
|
|
|
# Worldtree model — v1 default.
|
|
VOR_WORLDTREE_MODEL=qwen3.6-35-a3b-heretic
|