michaelkri commited on
Commit
90de7db
·
1 Parent(s): 0df66dc

Added launch configuration

Browse files
Files changed (1) hide show
  1. .vscode/launch.json +19 -0
.vscode/launch.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python Debugger: FastAPI",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "module": "uvicorn",
12
+ "args": [
13
+ "app.main:app",
14
+ "--reload"
15
+ ],
16
+ "jinja": true
17
+ }
18
+ ]
19
+ }