mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-13 11:52:45 +02:00
closes #206 * feat: implement remote debugging on a RaspiBlitz * docs: reverse the prep steps * fix: ruff line length warning
31 lines
564 B
JSON
31 lines
564 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: FastAPI",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": [
|
|
"app.main:app"
|
|
],
|
|
"jinja": true,
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"pathMappings": [
|
|
{
|
|
"localRoot": "${workspaceFolder}",
|
|
"remoteRoot": "."
|
|
}
|
|
],
|
|
"connect": {
|
|
"host": "192.168.1.49",
|
|
"port": 5678
|
|
}
|
|
}
|
|
]
|
|
}
|