Files
overnight-trading-bot/.devcontainer/devcontainer.json
T

24 lines
478 B
JSON
Raw Normal View History

2026-06-07 02:11:46 +04:00
{
"image": "mcr.microsoft.com/devcontainers/go:latest",
"forwardPorts": [
3300
],
"portsAttributes": {
"3300": {
"label": "Application",
"onAutoForward": "notify"
}
},
"customizations": {
"vscode": {
"extensions": [
"golang.go"
]
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
}