{ // 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": "Master", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cli", "env": { "DUMP_PATH": "../tmp/nodes.json", "CONFIG_PATH": "../tmp/config.json", "NODE_DIR_PATH": "../tmp/node", "TOKEN": "abcd" }, "args": [ "master" ] }, { "name": "Node", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cli", "env": { "DUMP_PATH": "../tmp/nodes.json", "CONFIG_PATH": "../tmp/config.json", "NODE_PATH": "../tmp/node.json" }, "args": [ "node" ] }, { "name": "Print", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cli", "env": { "DUMP_PATH": "../tmp/nodes.json", "CONFIG_PATH": "../tmp/config.json", "NODE_DIR_PATH": "../tmp/node" }, "args": [ "print" ] } ] }