Files
home-automation-backend/.vscode/launch.json

26 lines
776 B
JSON
Raw Normal View History

2024-07-23 15:33:23 +02:00
{
// 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": [
{
2026-01-10 13:22:02 +00:00
"name": "Python Debugger: FastAPI",
"type": "debugpy",
2024-07-23 15:33:23 +02:00
"request": "launch",
2026-01-10 13:22:02 +00:00
"module": "uvicorn",
2024-09-16 16:55:29 +02:00
"args": [
2026-01-10 13:22:02 +00:00
"app:app",
"--host=0.0.0.0",
"--reload",
"--port=18881"
],
"jinja": true,
"autoStartBrowser": false,
"env": {
"CONFIG_FILE": "devsettings.yaml"
},
"console": "integratedTerminal"
2024-07-23 15:33:23 +02:00
}
]
}