1
0
mirror of https://github.com/home-assistant/core synced 2024-07-08 20:17:01 +00:00

Add "Home Assistant (skip pip)" to VS Code launch.json (#74887)

This commit is contained in:
Michael 2022-07-10 23:06:27 +02:00 committed by GitHub
parent b4e5c95e03
commit c2d8335cc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
.vscode/launch.json vendored
View File

@ -12,6 +12,14 @@
"justMyCode": false,
"args": ["--debug", "-c", "config"]
},
{
"name": "Home Assistant (skip pip)",
"type": "python",
"request": "launch",
"module": "homeassistant",
"justMyCode": false,
"args": ["--debug", "-c", "config", "--skip-pip"]
},
{
// Debug by attaching to local Home Asistant server using Remote Python Debugger.
// See https://www.home-assistant.io/integrations/debugpy/