woodpecker/.vscode/launch.json

25 lines
650 B
JSON
Raw Normal View History

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Woodpecker server",
"type": "go",
"request": "launch",
"mode": "debug",
2021-09-25 22:46:07 +00:00
"program": "${workspaceFolder}/cmd/server/",
"cwd": "${workspaceFolder}"
},
{
"name": "Woodpecker agent",
"type": "go",
"request": "launch",
"mode": "debug",
2021-09-25 22:46:07 +00:00
"program": "${workspaceFolder}/cmd/agent/",
"cwd": "${workspaceFolder}"
}
]
}