safing-portmaster/.vscode/launch.json
Alexandr Stelnykovych b9670705f4 VSCode launch configs
2025-02-24 15:39:02 +02:00

48 lines
No EOL
2 KiB
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": "portmaster-core",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmds/portmaster-core",
"args": ["--data=D:\\delme\\pmdata", "--disable-interception=true", "-log=trace"], // TODO: update the path to the data folder if needed
},
{
"name": "portmaster-start",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmds/portmaster-start",
"args": ["app", "--data=D:\\delme\\pmdata", "-log=trace"], // TODO: update the path to the data folder if needed
},
{
"name": "notifier",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmds/notifier",
"args": ["--data=D:\\delme\\pmdata", "-log=trace"], // TODO: update the path to the data folder if needed
},
{
"name": "observation-hub",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmds/observation-hub",
"args": ["--data=D:\\delme\\pmdata", "-log=trace"], // TODO: update the path to the data folder if needed
} ,
{
"name": "hub",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmds/hub",
"args": ["--data=D:\\delme\\pmdata_hub", "-log=trace"], // TODO: update the path to the data folder if needed
}
]
}