Files
wiki_crawler/.vscode/launch.json
2025-12-23 01:07:30 +08:00

15 lines
324 B
JSON

{
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"backend.main:app",
"--reload"
],
"jinja": true
}
]
}