github.com/localhostbase/localhostdev@v1.4.1/.vscode/launch.json (about)

     1  {
     2      "version": "0.2.0",
     3      "configurations": [
     4          {
     5              "name": "debug",
     6              "type": "go",
     7              "request": "launch",
     8              "mode": "debug",
     9              "remotePath": "",
    10              "port": 2345,
    11              "host": "127.0.0.1",
    12              "program": "${workspaceRoot}/cmd/ddev",
    13              "cwd": "$HOME/sites/drupal8",
    14              "env": {"DRUD_DEBUG": true},
    15              "args": [],
    16              "showLog": true
    17          },
    18          {
    19              "name": "pkg-level test",
    20              "type": "go",
    21              "request": "launch",
    22              "mode": "test",
    23              "remotePath": "",
    24              "port": 2345,
    25              "host": "127.0.0.1",
    26              "program": "${workspaceRoot}/pkg/plugins/platform",
    27              "env": {"DRUD_DEBUG": true},
    28              "args": [],
    29              "showLog": true
    30          }
    31      ]
    32  }