Files
go/.devcontainer/devcontainer.json
2025-10-27 14:21:35 +08:00

25 lines
364 B
JSON

{
"name": "Go",
"image": "mcr.microsoft.com/devcontainers/go:1.24-bookworm",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
},
"portsAttributes": {
"9000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
"postAttachCommand": "go run server.go"
}