feat: add codespace definition

This commit is contained in:
Andrew Hay 2024-09-13 18:45:32 +00:00
parent e49c40dbd3
commit fe7f6f0cb4

13
devcontainer.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "Go Development Environment",
"image": "mcr.microsoft.com/vscode/devcontainers/go:1",
"features": {
"ghcr.io/devcontainers/features/go:1": {}
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"golang.go"
]
}