coredns-yaml/.vscode/launch.json

27 lines
725 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug CoreDNS",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/../coredns/coredns",
"args": [],
"cwd": "${workspaceFolder}/testdata",
"env": {
"GOWORK": "${workspaceFolder}/../coredns/go.work"
},
"preLaunchTask": "Build CoreDNS",
"showLog": true
},
{
"name": "Attach to CoreDNS",
"type": "go",
"request": "attach",
"mode": "remote",
"port": 2345,
"host": "127.0.0.1"
}
]
}