mirror of
https://github.com/amitbet/vncproxy.git
synced 2025-04-27 18:55:13 +00:00
86 lines
2.4 KiB
JSON
86 lines
2.4 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Server Test",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "test",
|
|
"remotePath": "",
|
|
"port": 2345,
|
|
"program": "${workspaceRoot}/server",
|
|
"args": [
|
|
"-test.v"
|
|
],
|
|
"osx": {
|
|
"env": {
|
|
//"GOPATH": "/Users/amitbet/Dropbox/go"
|
|
}
|
|
},
|
|
"windows": {
|
|
"env": {
|
|
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
|
|
}
|
|
},
|
|
"showLog": true
|
|
},
|
|
{
|
|
"name": "Launch Proxy Test",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "test",
|
|
"remotePath": "",
|
|
"port": 2345,
|
|
"program": "${workspaceRoot}/proxy",
|
|
"args": [
|
|
"-test.v"
|
|
],
|
|
"osx": {
|
|
"env": {
|
|
//"GOPATH": "/Users/amitbet/Dropbox/go"
|
|
}
|
|
},
|
|
"windows": {
|
|
"env": {
|
|
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
|
|
}
|
|
},
|
|
"showLog": true
|
|
},
|
|
{
|
|
"name": "Launch Recorder",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"remotePath": "",
|
|
"port": 2345,
|
|
"host": "127.0.0.1",
|
|
"program": "${workspaceRoot}/recorder/cmd",
|
|
"osx": {
|
|
"env": {
|
|
//"GOPATH": "${env.HOME}/Dropbox/go"
|
|
}
|
|
},
|
|
"windows": {
|
|
"env": {
|
|
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
|
|
}
|
|
},
|
|
"args": ["-recDir","/Users/amitbet/vncRec/recording.rbs", "-targPort","5903","-targPass","Ch_#!T@8"],
|
|
"showLog": true
|
|
},
|
|
{
|
|
"name": "Launch fbs player",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "test",
|
|
"remotePath": "",
|
|
"port": 2345,
|
|
"program": "${workspaceRoot}/player",
|
|
"args": [
|
|
"-test.v"
|
|
],
|
|
"showLog": true
|
|
}
|
|
]
|
|
} |