We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4dd576 commit fe8e39eCopy full SHA for fe8e39e
.vscode/launch.json
@@ -0,0 +1,34 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ "name": "Debug Webapp",
5
+ "type": "debugpy",
6
+ "request": "launch",
7
+ "module": "fastapi",
8
+ "args": [
9
+ "dev",
10
+ "src/webapp",
11
+ "--port",
12
+ "8000"
13
+ ],
14
+ "env": {
15
+ "ENV_FILE_PATH": "${workspaceFolder}/src/webapp/.env"
16
+ }
17
+ },
18
19
+ "name": "Debug Worker",
20
21
22
23
24
25
+ "src/worker",
26
27
+ "8001"
28
29
30
+ "ENV_FILE_PATH": "${workspaceFolder}/src/worker/.env"
31
32
33
34
+}
0 commit comments