Skip to content

Commit

Permalink
Add debug configurations for run-crate and run-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger committed Sep 9, 2024
1 parent ce43994 commit 22c5aa4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
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"
}
]
}

0 comments on commit 22c5aa4

Please sign in to comment.