{ // 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}/services/scraper-linkedin/main.go", "cwd": "${workspaceFolder}/services/scraper-linkedin", "env": { "GO_ENV": "development" }, "args": [], "showLog": true, "console": "integratedTerminal" }, { "name": "Launch CV analyze services", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/apps/cron-analyzer/cmd/cli/main.go", "cwd": "${workspaceFolder}/apps/cron-analyzer", "env": { "GO_ENV": "development" }, "args": [], "showLog": true, "console": "integratedTerminal" }, { "name": "Launch OpenAi CV analyze services", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/apps/cron-analyzer/cmd/openai-demo/main.go", "cwd": "${workspaceFolder}/apps/cron-analyzer", "env": { "GO_ENV": "development" }, "args": [], "showLog": true, "console": "integratedTerminal" }, { "name": "Launch API Service", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/services/api/cmd/server/main.go", "cwd": "${workspaceFolder}/services/api", "env": { "GO_ENV": "development" }, "args": [], "showLog": true, "console": "integratedTerminal" }, { "name": "Launch Glassdoor Scraper", "type": "node", "request": "launch", "program": "${workspaceFolder}/services/scraper-glassdoor/index.ts", "cwd": "${workspaceFolder}/services/scraper-glassdoor", "runtimeArgs": ["-r", "ts-node/register"], "env": { "NODE_ENV": "development" }, "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" } ] }