8e663f00a1e3f02774ae07b5799e311c0de68cae
[arvados.git] / .vscode / launch.json
1 {
2     // Use IntelliSense to learn about possible attributes.
3     // Hover to view descriptions of existing attributes.
4     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5     "version": "0.2.0",
6     "configurations": [
7         {
8             "name": "Launch controller",
9             "type": "go",
10             "request": "launch",
11             "mode": "auto",
12             "program": "cmd/arvados-server/cmd.go",
13             "env": {},
14             "args": ["controller"]
15         },
16         {
17             "name": "Attach to delve in localhost:45000",
18             "type": "go",
19             "request": "attach",
20             "mode": "remote",
21             // remotePath is tricky! the absoulte path to prefix to all filenames. 
22             // That means, "lib/controller.go" should be found in $remotePath/lib/controller.go"
23             //  otherwise breakpoints wont work. If in doubt use "trace":"verbose" to debug 
24             // "trace": "verbose"
25             "remotePath": "/usr/src/arvados/",
26             "port": 45000,
27             "host": "localhost",
28             "apiVersion": 2
29             
30         }
31     ]
32 }