jobs-monorepo/.vscode/launch.json
Elshimy Ziad Magdy Taha 24b5bf1d08 microservices
2025-10-04 17:18:49 +05:00

79 lines
1.9 KiB
JSON

{
// 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 Scraper",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/scraper/main.go",
"env": {
"GO_ENV": "development"
},
"args": [],
"showLog": true,
"console": "integratedTerminal"
},
{
"name": "Launch CV Service",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cv/main.go",
"env": {
"GO_ENV": "development"
},
"args": [],
"showLog": true,
"console": "integratedTerminal"
},
{
"name": "Launch API Service",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/api/main.go",
"env": {
"GO_ENV": "development"
},
"args": [],
"showLog": true,
"console": "integratedTerminal"
},
{
"name": "Launch Current File",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${fileDirname}",
"console": "integratedTerminal"
},
{
"name": "Test Current Package",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${fileDirname}",
"console": "integratedTerminal"
},
{
"name": "Test Current File",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${file}",
"console": "integratedTerminal"
}
]
}