mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-19 10:47:15 +00:00
26 lines
502 B
JSON
26 lines
502 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Supervisor remote debug",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"port": 33333,
|
|
"host": "172.30.32.2",
|
|
"pathMappings": [
|
|
{
|
|
"localRoot": "${workspaceFolder}",
|
|
"remoteRoot": "/usr/src/supervisor"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "Debug Tests",
|
|
"type": "python",
|
|
"request": "test",
|
|
"console": "internalConsole",
|
|
"justMyCode": false
|
|
}
|
|
]
|
|
}
|