30 lines
879 B
JSON
30 lines
879 B
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": "Launch Package",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/main.go",
|
|
"env": {
|
|
"HTTP_STATIC": "${workspaceFolder}/static/dist",
|
|
//"VIDEO_OUT_DEVICE": "/dev/video4",
|
|
"AUDIO_OUT_DEVICE": "plughw:0,1,0",
|
|
"INPUT_DEVICE": "/dev/input/event5",
|
|
"JINGLE_PATH": "${workspaceFolder}/audio",
|
|
"SONOS_TARGET": "Living Room"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Package Test",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/test/main.go"
|
|
}
|
|
]
|
|
} |