-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add debug configurations for run-crate and run-spec
- Loading branch information
1 parent
ce43994
commit 22c5aa4
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json", | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "debugpy", | ||
"request": "launch", | ||
"name": "run_crate", | ||
"module": "cr8.run_crate", | ||
"args": ["latest-nightly"], | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
"type": "debugpy", | ||
"request": "launch", | ||
"name": "run_spec", | ||
"module": "cr8.run_spec", | ||
"args": ["specs/sample.toml", "localhost:4200"], | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |