Files
go/.devcontainer/devcontainer.json

24 lines
362 B
JSON
Raw Permalink Normal View History

2025-10-27 14:21:35 +08:00
2019-04-16 19:54:02 -07:00
{
2020-07-25 01:38:41 +00:00
"name": "Go",
2025-10-27 14:21:35 +08:00
"image": "mcr.microsoft.com/devcontainers/go:1.24-bookworm",
2022-05-17 12:41:55 -07:00
"customizations": {
"vscode": {
"settings": {},
2022-05-17 12:41:55 -07:00
"extensions": [
"streetsidesoftware.code-spell-checker"
2022-05-17 12:41:55 -07:00
]
}
},
2020-07-25 01:38:41 +00:00
2021-03-16 16:08:38 +00:00
"portsAttributes": {
"9000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
2025-10-19 09:20:58 +00:00
},
2025-10-27 14:21:35 +08:00
"postAttachCommand": "go run server.go"
2020-08-31 02:25:45 +00:00
}