-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffd17bb
commit 78c8d16
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Run Uvicorn Server", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/venv/bin/uvicorn", // Adjust path for Windows if needed | ||
"args": [ | ||
"main:app", | ||
"--reload", | ||
"--port", "8000" | ||
], | ||
"console": "integratedTerminal", | ||
"env": { | ||
"PYTHONPATH": "${workspaceFolder}" | ||
}, | ||
"cwd": "${workspaceFolder}", | ||
"justMyCode": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters