Amp-Thread-ID: https://ampcode.com/threads/T-77c38402-ea95-4b09-8844-0c415b1ee7d2 Co-authored-by: Amp <amp@ampcode.com>
32 lines
694 B
JSON
32 lines
694 B
JSON
{
|
|
"name": "beads Development Container",
|
|
"image": "mcr.microsoft.com/devcontainers/go:1-1.24-bookworm",
|
|
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/git:1": {
|
|
"version": "latest"
|
|
}
|
|
},
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"golang.go"
|
|
],
|
|
"settings": {
|
|
"go.toolsManagement.checkForUpdates": "local",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go"
|
|
}
|
|
}
|
|
},
|
|
|
|
"postCreateCommand": "bash .devcontainer/setup.sh",
|
|
|
|
"remoteUser": "vscode",
|
|
|
|
"mounts": [
|
|
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"
|
|
]
|
|
}
|