понедельник, 22 сентября 2025 г.

GO отладка VSCode. Формат строки в launch.json


"version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Package",
            "type": "go",
            "request": "launch",
            "mode": "auto",
            "program": "${workspaceFolder}/cmd", // указывает, что запускать
// (пакет main)
            "cwd": "${workspaceFolder}" // (current working directory)
// устанавливает рабочий каталог в корень проекта
        }
    ]


"version": "0.2.0",
    "configurations": [
        {
            "name": "My debug",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "program": "${workspaceFolder}/cmd/shortener"
        }
    ]

















{
                "name": "Launch Package",
                "type": "go",
                "request": "launch",
                "mode": "debug",
                "program": "${fileDirname}", // Or specify the path to your main Go file
                "args": [
                    "-flag1",
                    "value1",
                    "--another-flag",
                    "another_value"
                ]
            }