Files
go/.devcontainer/devcontainer.json
2025-10-28 20:21:09 +08:00

24 lines
362 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"
}