node-api/.vscode/launch.json

22 lines
670 B
JSON

{
// 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 Package",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}",
"env": {
"NATS_URL": "nats://192.168.122.127:4222",
"NATS_ALIAS": "node-x",
"DATABASE_PATH": "./node-x.sqlite",
"TOKEN": "ABCD",
},
}
]
}