-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
46 lines (46 loc) · 1.86 KB
/
Copy pathsettings.json
File metadata and controls
46 lines (46 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"workbench.colorTheme": "Default Dark+",
"remote.SSH.path": "C:\\Users\\kraposhin\\bin\\ssh.bat",
"remote.SSH.remotePlatform": {
"172.16.0.29": "linux",
"172.16.0.4": "linux"
},
"remote.SSH.useLocalServer": false,
"remote.SSH.showLoginTerminal": true,
"git.ignoreLegacyWarning": true,
// OpenSDN build settings
"terminal.integrated.env.linux": {
"OPENSDN_PROJECT_DIR" : "172.16.0.4-tf-krap-build",
"OPENSDN_BUILD_HOST" : "172.16.0.4",
"OPENSDN_REMOTE_BUILD_DIR" : "tf-krap-build",
"OPENSDN_TARGET_TYPE" : "debug",
"OPENSDN_N_BUILD_CPU" : "16",
"OPENSDN_TARGET_DIR" : "vnsw/agent/contrail",
"OPENSDN_TARGET_BIN" : "contrail-vrouter-agent",
"OPENSDN_TARGET_CONTAINER" : "vrouter_vrouter-agent_1",
"OPENSDN_TARGET_HOSTS" : "172.16.0.28",
"OPENSDN_GDBSERVER_HOST" : "172.16.0.28",
"OPENSDN_GDBSERVER_PORT" : "2024"
},
// ActionButtons settings for OpenSDN
"actionButtons": {
"defaultColor": "#ff0034", // Can also use string color names.
"loadNpmCommands":false, // Disables automatic generation of actions for npm commands.
"reloadButton":"♻️", // Custom reload button text or icon (default ↻). null value enables automatic reload on configuration change
"commands": [
{
"cwd": "${cwd}", // Terminal initial folder ${workspaceFolder} and os user home as defaults
"name": "$(tools) Build OpenSDN binary",
"color": "yellow",
"command": "./opensdn_sync_and_build.sh",
},
{
"cwd": "${cwd}", // Terminal initial folder ${workspaceFolder} and os user home as defaults
"name": "$(triangle-right) Run GDB-Server",
"color": "red",
"singleInstance": true,
"command":"./Run_GDB_server.sh", // This is executed in the terminal.
}
]
}
}