Skip to content

Commit 0d4e3c4

Browse files
authored
Add launch.json file to make debug easier for the CLI (#314)
Add launch.json file to make debug easier Signed-off-by: ArthurSens <[email protected]> Signed-off-by: ArthurSens <[email protected]>
1 parent cb50282 commit 0d4e3c4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

installer/.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug render",
6+
"type": "go",
7+
"request": "launch",
8+
"mode": "debug",
9+
"program": "main.go",
10+
"env": {},
11+
"args": ["render", "--config", "examples/full-config.yaml"],
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)