From d3a6c079279c278d66d1a058b2498274d78c0e8a Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Tue, 24 Feb 2026 13:51:29 +0000 Subject: [PATCH 1/2] Initial plan From cba63d94409a5af0041ea719b320005c3c727c73 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Tue, 24 Feb 2026 13:54:37 +0000 Subject: [PATCH 2/2] Enhance devcontainer.json with port forwarding and VS Code extensions Co-authored-by: ni0520 <178153319+ni0520@users.noreply.github.com> --- .devcontainer/devcontainer.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 39bbd26..85bf90f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,4 +1,19 @@ { "image": "mcr.microsoft.com/devcontainers/universal:2", - "features": {} + "features": {}, + "postCreateCommand": "npm install", + "forwardPorts": [3000], + "portsAttributes": { + "3000": { + "label": "Application", + "onAutoForward": "notify" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint" + ] + } + } }