Files
ad_trident/.vscode/launch.json
2026-04-16 19:54:29 +02:00

32 lines
982 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": "Attach to AppDaemon",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"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}"
}
]
}