Skip to content

Commit c128978

Browse files
authored
Add vscode debug profile for operator binary (#421)
1 parent e4a654f commit c128978

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

template/.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "lldb",
6+
"request": "launch",
7+
"name": "Debug operator binary",
8+
"cargo": {
9+
"args": ["build"],
10+
"filter": {
11+
"name": "stackable-{[ operator.name }]",
12+
"kind": "bin"
13+
}
14+
},
15+
"args": ["run"],
16+
"cwd": "${workspaceFolder}"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)