EtherGuard-VPN/.vscode/launch.json

38 lines
1.4 KiB
JSON
Raw Normal View History

2021-08-16 20:58:15 +02:00
{
// 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": [
{
2021-12-02 18:13:48 +01:00
"name": "Launch Super",
2021-08-16 20:58:15 +02:00
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
2021-11-28 12:39:40 +01:00
"buildFlags": "-tags 'novpp'",
2021-08-24 10:43:55 +02:00
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
2021-12-09 23:39:37 +01:00
"args":["-config","example_config/super_mode/EgNet_super.yaml","-mode","super"/*,"-example"*/],
2021-12-02 18:13:48 +01:00
},
{
"name": "Launch Edge",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"buildFlags": "-tags 'novpp'",
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
2021-12-10 01:22:25 +01:00
"args":["-config","example_config/super_mode/EgNet_edge001.yaml","-mode","edge"/*,"-example"*/],
2021-12-09 23:39:37 +01:00
},
2021-12-07 21:39:19 +01:00
{
"name": "Launch GenCfg",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"buildFlags": "-tags 'novpp'",
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
2021-12-13 05:20:58 +01:00
"args":["-config","example_config/p2p_mode/genp2p.yaml","-mode","gencfg","-cfgmode","p2p"/*,"-example"*/],
2021-08-16 20:58:15 +02:00
}
]
}