From f2c0a9cc55f13c0de3f8848b560461cab0914c3a Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 30 Jan 2026 14:10:12 +0800 Subject: [PATCH] fix: simplify devcontainer config --- .devcontainer/devcontainer.json | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 95b3f7689..1f4800b98 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,33 +2,17 @@ "name": "Moltbot Gateway", "image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm", - "features": { - "ghcr.io/devcontainers/features/common-utils:2": {} - }, - "customizations": { "vscode": { "extensions": [ "dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "ms-vscode.vscode-typescript-next" - ], - "settings": { - "terminal.integrated.defaultProfile.linux": "bash" - } + ] } }, - "forwardPorts": [18789, 18791, 11434], - "portsAttributes": { - "18789": { - "label": "Gateway WebSocket", - "onAutoForward": "openBrowser" - }, - "11434": { - "label": "Ollama API" - } - }, + "forwardPorts": [18789], "postCreateCommand": "bash .devcontainer/post-create.sh",