Skip to content

Commit

Permalink
Add launch.json file to make debug easier for the CLI (#314)
Browse files Browse the repository at this point in the history
Add launch.json file to make debug easier

Signed-off-by: ArthurSens <[email protected]>

Signed-off-by: ArthurSens <[email protected]>
  • Loading branch information
ArthurSens authored Sep 12, 2022
1 parent cb50282 commit 0d4e3c4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions installer/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug render",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "main.go",
"env": {},
"args": ["render", "--config", "examples/full-config.yaml"],
}
]
}

0 comments on commit 0d4e3c4

Please sign in to comment.