jobs-monorepo/.vscode/launch.json
Elshimy Ziad Magdy Taha 0ab6954231 feat: add job analysis infrastructure and Glassdoor support
- Added new job analysis result repository and database migration system
- Expanded job creation to support Glassdoor as a new provider alongside LinkedIn
- Added CV analysis service launch configuration in VS Code
- Updated Makefile with new commands for scraper service and migrations
- Improved environment loading in cron analyzer to support local development
- Added error handling for unsupported job providers
- Integrated job analysis results
2025-10-24 15:10:20 +05:00

92 lines
2.2 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 analyze services",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/cron-analyzer/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"
}
]
}