added debugger support

This commit is contained in:
2026-04-16 19:54:29 +02:00
parent 8dbc133824
commit a317b07c19
4 changed files with 35 additions and 0 deletions

16
.vscode/launch.json vendored
View File

@@ -4,6 +4,22 @@
// 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",