mirror of
https://github.com/dragonheim/gagent.git
synced 2025-02-23 09:19:53 -08:00
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "GitHub Codespaces (Default)",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"settings": {
|
|
"go.toolsManagement.checkForUpdates": "local",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go",
|
|
"go.goroot": "/usr/local/go",
|
|
"go.linting.enabled": true,
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
}
|
|
},
|
|
"remoteUser": "codespace",
|
|
"overrideCommand": false,
|
|
"mounts": ["source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"],
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined",
|
|
"--privileged",
|
|
"--init"
|
|
],
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"GitHub.vscode-pull-request-github",
|
|
"golang.go",
|
|
"hashicorp.terraform",
|
|
"wholroyd.hcl",
|
|
"github.copilot"
|
|
],
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [],
|
|
|
|
// "oryx build" will automatically install your dependencies and attempt to build your project
|
|
// "postCreateCommand": "oryx build -p virtualenv_name=.venv --log-file /tmp/oryx-build.log --manifest-dir /tmp || echo 'Could not auto-build. Skipping.'"
|
|
}
|