Add a config for launching the rove executable

This commit is contained in:
Marc Di Luzio 2020-06-08 18:14:37 +01:00
parent b0e076ac1a
commit fba75960f8

10
.vscode/launch.json vendored
View file

@ -13,6 +13,16 @@
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"env": {}, "env": {},
"args": [], "args": [],
},
{
"name": "Launch Rove",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/rove/main.go",
"cwd": "${workspaceFolder}",
"env": {},
"args": ["radar"],
} }
] ]
} }