Version 3 (modified by root, at 2021-10-18T04:47:14Z) (diff) |
---|
VSCode notes
golang debug with env and tags
"configurations": [ { "name": "Launch file", "type": "go", "request": "launch", "mode": "debug", "program": "${file}", "buildFlags": "-tags=tag1", "env": { "VARIABLE_NAME": "variable value", }, "showLog": true, } ]