Reticulum-Go/.devcontainer/devcontainer.json

23 lines
415 B
JSON
Raw Permalink Normal View History

{
"name": "Reticulum-Go",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"remoteUser": "vscode",
"customizations": {
"vscode": {
"extensions": [
"golang.go",
"redhat.vscode-yaml"
]
}
},
"postCreateCommand": "task bootstrap && task hooks:install",
"containerEnv": {
"GOFLAGS": "-mod=vendor",
"GOPROXY": "off",
"GOSUMDB": "off"
}
}