Skip to content

Commit 14e5250

Browse files
authored
chore: add VSCode remote debug configuration (#5845)
* chore: add VSCode remote debug configuration * chore: updated bundleProject list * fix: remove bundle project stuff
1 parent 440cd7a commit 14e5250

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

kura/.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": "java",
6+
"name": "Remote Kura debug",
7+
"request": "attach",
8+
"hostName": "${input:ipAddress}",
9+
"port": 8000
10+
}
11+
],
12+
"inputs": [
13+
{
14+
"id": "ipAddress",
15+
"type": "promptString",
16+
"description": "IP Address of the device running Kura"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)