commit 8ef09da1221a453ca51888c1a41d7e1031c4455b Author: ccb Date: Thu Jul 24 15:32:35 2025 +0000 add container configuration diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..3f8b87a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "image":"mcr.microsoft.com/devcontainers/base:dev-ubuntu-20.04", + "forwardPorts": [ + { + "containerPort": 8080, + "protocol": "tcp" + } + ], + "containerEnv": { + "NODE_ENV": "development" + }, + "initializeCommand": "echo \"init\";", + "postCreateCommand": [ + "echo \"created\";", + "echo \"test\";" + ], + "runArgs": [ + "-p", + "8888:8888" + ] + } \ No newline at end of file