Files
test4/.devcontainer/devcontainer.json
panshuxiao adefecc0bd init
2025-04-06 19:52:57 +08:00

23 lines
511 B
JSON

{
"name": "Go Dev Environment",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go"
},
"extensions": [
"golang.go",
"ms-vscode.go",
]
}
},
"forwardPorts": [8080],
"postCreateCommand": "go mod tidy",
"remoteUser": "vscode"
}