Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 22c5aa4

Browse files
committed
Add debug configurations for run-crate and run-spec
1 parent ce43994 commit 22c5aa4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"type": "debugpy",
7+
"request": "launch",
8+
"name": "run_crate",
9+
"module": "cr8.run_crate",
10+
"args": ["latest-nightly"],
11+
"console": "integratedTerminal"
12+
},
13+
{
14+
"type": "debugpy",
15+
"request": "launch",
16+
"name": "run_spec",
17+
"module": "cr8.run_spec",
18+
"args": ["specs/sample.toml", "localhost:4200"],
19+
"console": "integratedTerminal"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)