SurfSense/.vscode/launch.json
2025-06-03 00:33:30 -07:00

37 lines
No EOL
1.2 KiB
JSON

{
// 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": [
{
"name": "Python Debugger: UV Run with Reload",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"app.app:app",
"--reload",
"--host",
"0.0.0.0",
"--log-level",
"info",
"--reload-dir",
"app"
],
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend",
"python": "${command:python.interpreterPath}"
},
{
"name": "Python Debugger: main.py (direct)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/surfsense_backend/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend"
}
]
}