Skip to content

Commit

Permalink
Create a launch config for making debugging the start command easier
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisWiegman committed Jun 19, 2024
1 parent 02c6239 commit 108761f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "cmd/kana/main.go",
"args": [
"start",
"--name=acme"
]
}
]
}

0 comments on commit 108761f

Please sign in to comment.