Skip to content

Commit

Permalink
chore: add services to launch.json vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Jul 22, 2024
1 parent 14fc2ea commit 3aa5aa6
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
{
// 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": []
}
// 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 CatalogsWrite",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/internal/services/catalogwriteservice/cmd/app/main.go"
},
{
"name": "Launch CatalogsRead",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/internal/services/catalogreadservice/cmd/app/main.go"
},
{
"name": "Launch Orders",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/internal/services/orderservice/cmd/app/main.go"
}
]
}

0 comments on commit 3aa5aa6

Please sign in to comment.