Skip to content

Commit dd96b53

Browse files
committed
Revert launch.json changes
1 parent 87bfe85 commit dd96b53

File tree

1 file changed

+51
-55
lines changed

1 file changed

+51
-55
lines changed

.vscode/launch.json

Lines changed: 51 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,53 @@
11
{
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: Current File",
9-
"type": "debugpy",
10-
"request": "launch",
11-
"program": "${file}",
12-
"console": "integratedTerminal",
13-
"justMyCode": false
14-
},
15-
{
16-
"name": "Backend (Python)",
17-
"type": "debugpy",
18-
"request": "launch",
19-
"module": "quart",
20-
"cwd": "${workspaceFolder}/app/backend",
21-
"python": "${workspaceFolder}/.venv/bin/python",
22-
"env": {
23-
"QUART_APP": "main:app",
24-
"QUART_ENV": "development",
25-
"QUART_DEBUG": "0",
26-
// Set this to "no-override" if you want env vars here to override AZD env vars
27-
"LOADING_MODE_FOR_AZD_ENV_VARS": "override"
28-
},
29-
"args": ["run", "--no-reload", "-p 50505"],
30-
"console": "integratedTerminal",
31-
"justMyCode": false
32-
},
33-
{
34-
"name": "Frontend",
35-
"type": "node-terminal",
36-
"request": "launch",
37-
"command": "npm run dev",
38-
"cwd": "${workspaceFolder}/app/frontend"
39-
},
40-
{
41-
"name": "Tests (Python)",
42-
"type": "debugpy",
43-
"request": "launch",
44-
"program": "${file}",
45-
"purpose": ["debug-test"],
46-
"console": "integratedTerminal",
47-
"justMyCode": false
48-
}
49-
],
50-
"compounds": [
51-
{
52-
"name": "Frontend & Backend",
53-
"configurations": ["Backend (Python)", "Frontend"],
54-
"stopAll": true
55-
}
56-
]
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": "Backend (Python)",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"module": "quart",
12+
"cwd": "${workspaceFolder}/app/backend",
13+
"python": "${workspaceFolder}/.venv/bin/python",
14+
"env": {
15+
"QUART_APP": "main:app",
16+
"QUART_ENV": "development",
17+
"QUART_DEBUG": "0",
18+
// Set this to "no-override" if you want env vars here to override AZD env vars
19+
"LOADING_MODE_FOR_AZD_ENV_VARS": "override"
20+
},
21+
"args": [
22+
"run",
23+
"--no-reload",
24+
"-p 50505"
25+
],
26+
"console": "integratedTerminal",
27+
"justMyCode": false
28+
},
29+
{
30+
"name": "Frontend",
31+
"type": "node-terminal",
32+
"request": "launch",
33+
"command": "npm run dev",
34+
"cwd": "${workspaceFolder}/app/frontend",
35+
},
36+
{
37+
"name": "Tests (Python)",
38+
"type": "debugpy",
39+
"request": "launch",
40+
"program": "${file}",
41+
"purpose": ["debug-test"],
42+
"console": "integratedTerminal",
43+
"justMyCode": false
44+
}
45+
],
46+
"compounds": [
47+
{
48+
"name": "Frontend & Backend",
49+
"configurations": ["Backend (Python)", "Frontend"],
50+
"stopAll": true
51+
}
52+
]
5753
}

0 commit comments

Comments
 (0)