Skip to content

Commit

Permalink
Merge pull request #53 from jungaretti/vscode-launch-json
Browse files Browse the repository at this point in the history
Add launch.json for VS Code debugging
  • Loading branch information
jungaretti authored Feb 1, 2025
2 parents 3bac5ac + 5e35d7a commit c279dbb
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
// 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": "deploy config.example.com",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"deploy",
"config.example.yml",
]
},
{
"name": "deploy config.example.com --create --delete",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"deploy",
"config.example.yml",
"--create",
"--delete",
]
},
{
"name": "print bacontest42.com",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"print",
"bacontest42.com"
]
}
]
}

0 comments on commit c279dbb

Please sign in to comment.