Skip to content

Commit

Permalink
Add local debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybenoy committed Dec 1, 2023
1 parent 4615abe commit 0bb2ec5
Show file tree
Hide file tree
Showing 5 changed files with 1,709 additions and 33 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,4 @@ cython_debug/
data
.ruff_cache
logs
log
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "FastAPI Debug",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.main:app",
"--reload"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"justMyCode": true },
{
"name": "Python: Remote Attach",
"type": "python",
Expand Down
Loading

0 comments on commit 0bb2ec5

Please sign in to comment.