gioui-gomobile-example/.vscode/launch.json
2022-04-15 18:15:31 +02:00

33 lines
No EOL
1 KiB
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": "In integrated terminal. Breaks bluetooth",
"type": "go",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "./desktop"
},
{
"name": "In separate Mac OS Terminal with command: dlv dap --listen :6868",
"type": "go",
"request": "launch",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"program": "${workspaceFolder}/desktop",
"port": 6868
},
{
"name": "Remote device",
"type": "go",
"request": "attach",
"mode": "remote",
"remotePath": "${workspaceFolder}",
"port": 4334,
"host": "127.0.0.1",
}
]
}