From 3aa5aa6ac83db324e48d35b1ebd7c461015d4ade Mon Sep 17 00:00:00 2001 From: Mehdi Hadeli Date: Mon, 22 Jul 2024 11:35:56 +0000 Subject: [PATCH] chore: add services to launch.json vscode --- .vscode/launch.json | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5c7247b4..c4d33df8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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": [] -} \ No newline at end of file + // 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" + } + ] +}