{ // 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" } ] }