We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb80915 commit ca5e451Copy full SHA for ca5e451
.vscode/launch.json
@@ -21,6 +21,25 @@
21
"PYDEVD_DISABLE_FILE_VALIDATION": "1"
22
}
23
},
24
+ {
25
+ "name": "Python: FastAPI",
26
+ "type": "debugpy",
27
+ "request": "launch",
28
+ "module": "uvicorn",
29
+ "args": [
30
+ "main:app",
31
+ "--reload",
32
+ "--host",
33
+ "0.0.0.0",
34
+ "--port",
35
+ "3000"
36
+ ],
37
+ "cwd": "${workspaceFolder}/app",
38
+ "console": "integratedTerminal",
39
+ "env": {
40
+ "PYTHONPATH": "${workspaceFolder}"
41
+ }
42
+ },
43
{
44
"name": "Python: Debug Tests",
45
"type": "debugpy",
0 commit comments