mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
VSCode launch configs
This commit is contained in:
parent
24c0f96d69
commit
b9670705f4
1 changed files with 19 additions and 6 deletions
25
.vscode/launch.json
vendored
25
.vscode/launch.json
vendored
|
@ -10,8 +10,7 @@
|
|||
"request": "launch",
|
||||
"mode": "auto",
|
||||
"program": "${workspaceFolder}/cmds/portmaster-core",
|
||||
"args": ["--data=D:\\delme\\pmdata", "--disable-interception=true"], // TODO: update the path to the data folder if needed
|
||||
"env": {} //{ "ENV_VAR1": "value1", "ENV_VAR2": "value2" }
|
||||
"args": ["--data=D:\\delme\\pmdata", "--disable-interception=true", "-log=trace"], // TODO: update the path to the data folder if needed
|
||||
},
|
||||
{
|
||||
"name": "portmaster-start",
|
||||
|
@ -19,8 +18,7 @@
|
|||
"request": "launch",
|
||||
"mode": "auto",
|
||||
"program": "${workspaceFolder}/cmds/portmaster-start",
|
||||
"args": ["app", "--data=D:\\delme\\pmdata"], // TODO: update the path to the data folder if needed
|
||||
"env": {} //{ "ENV_VAR1": "value1", "ENV_VAR2": "value2" }
|
||||
"args": ["app", "--data=D:\\delme\\pmdata", "-log=trace"], // TODO: update the path to the data folder if needed
|
||||
},
|
||||
{
|
||||
"name": "notifier",
|
||||
|
@ -28,8 +26,23 @@
|
|||
"request": "launch",
|
||||
"mode": "auto",
|
||||
"program": "${workspaceFolder}/cmds/notifier",
|
||||
"args": ["--data=D:\\delme\\pmdata"], // TODO: update the path to the data folder if needed
|
||||
"env": {} //{ "ENV_VAR1": "value1", "ENV_VAR2": "value2" }
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue