jobs-monorepo/.vscode/launch.json
Elshimy Ziad Magdy Taha c341cb8ff8 init
2025-09-28 21:00:08 +05:00

66 lines
1.6 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 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"
}
]
}