Files
ad_trident/.vscode/launch.json

33 lines
1.0 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": "Attach to AppDaemon",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"steppingResumesAllThreads": true,
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/conf"
}
],
"justMyCode": true
},
{
"name": "Run Unit Tests",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/apps/ad_toolbox/unittests.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}"
}
]
}