-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
29 lines (29 loc) · 812 Bytes
/
launch.json
File metadata and controls
29 lines (29 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"version": "0.2.0",
"configurations": [
{
"name": "Supernode Start",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/supernode/main.go",
"cwd": "${workspaceFolder}/supernode",
"args": ["start"],
"env": {},
"showLog": true,
"trace": "verbose"
},
{
"name": "sncli debug",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/sncli/main.go",
"cwd": "${workspaceFolder}/cmd/sncli",
"args": ["list"],
"env": {},
"showLog": true,
"trace": "verbose"
},
]
}