feat: added vsc config and removed test code

This commit is contained in:
2025-05-19 17:00:04 +02:00
parent 1dce7f3016
commit 3b226ade2d
3 changed files with 67 additions and 20 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["app.main:app", "--reload"],
"jinja": true,
"justMyCode": true,
"env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1"
}
}
]
}