From 92d375e925533af03d3e2d3cc7a883434f97cf63 Mon Sep 17 00:00:00 2001 From: Molecule AI Technical Writer Date: Wed, 13 May 2026 11:36:11 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20stale=20PLATFORM=5FURL=20defaults?= =?UTF-8?q?=20=E2=80=94=20platform:8080=20=E2=86=92=20host.docker.internal?= =?UTF-8?q?:8080?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the outdated `http://platform:8080` default hostname in three files. All workspace runtime modules now default to `http://host.docker.internal:8080` (molecule-ai-workspace-runtime #12); docs must match. Files changed: - agent-runtime/workspace-runtime.md: example env block default - architecture/molecule-technical-doc.md: Workspace Runtime env table - development/local-development.md: .env.example comment Co-Authored-By: Claude Opus 4.7 --- content/docs/agent-runtime/workspace-runtime.md | 2 +- content/docs/architecture/molecule-technical-doc.md | 2 +- content/docs/development/local-development.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/docs/agent-runtime/workspace-runtime.md b/content/docs/agent-runtime/workspace-runtime.md index f8840a6..44f03d2 100644 --- a/content/docs/agent-runtime/workspace-runtime.md +++ b/content/docs/agent-runtime/workspace-runtime.md @@ -42,7 +42,7 @@ Common runtime environment variables: ```bash WORKSPACE_ID=ws-123 WORKSPACE_CONFIG_PATH=/configs -PLATFORM_URL=http://platform:8080 +PLATFORM_URL=http://host.docker.internal:8080 PARENT_ID= AWARENESS_URL=http://awareness:37800 AWARENESS_NAMESPACE=workspace:ws-123 diff --git a/content/docs/architecture/molecule-technical-doc.md b/content/docs/architecture/molecule-technical-doc.md index 3a7ed27..a09a575 100644 --- a/content/docs/architecture/molecule-technical-doc.md +++ b/content/docs/architecture/molecule-technical-doc.md @@ -929,7 +929,7 @@ Postgres + Redis + Langfuse only (for local development without containerized wo |----------|---------|---------| | `WORKSPACE_ID` | `workspace-default` | Unique workspace identifier | | `WORKSPACE_CONFIG_PATH` | `/configs` | Config directory mount | -| `PLATFORM_URL` | `http://platform:8080` | Platform connection | +| `PLATFORM_URL` | `http://host.docker.internal:8080` | Platform connection | | `PARENT_ID` | Empty | Parent workspace ID (set if nested) | | `AWARENESS_URL` | Optional | Awareness service | | `AWARENESS_NAMESPACE` | Optional | Scoped namespace for awareness memory | diff --git a/content/docs/development/local-development.md b/content/docs/development/local-development.md index e44762e..6ccf889 100644 --- a/content/docs/development/local-development.md +++ b/content/docs/development/local-development.md @@ -66,7 +66,7 @@ WORKSPACE_ID= # assigned by platform on provision WORKSPACE_CONFIG_PATH= # path to config folder inside container MODEL_PROVIDER= # e.g. anthropic:claude-sonnet-4-6 TIER= # 1, 2, 3, or 4 -PLATFORM_URL= # http://platform:8080 +PLATFORM_URL= # http://host.docker.internal:8080 (in Docker) or http://localhost:8080 (on host) PARENT_ID= # set by platform during team expansion (empty for top-level) ANTHROPIC_API_KEY= # or OPENAI_API_KEY, etc. LANGFUSE_HOST= # http://langfuse-web:3000 (internal container port; host-mapped to :3001) -- 2.52.0