Skip to content

Commit 9a1f19f

Browse files
Add flask
1 parent f2ee122 commit 9a1f19f

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

.vscode/launch.json

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,27 @@
2222
// "CREDS": "",
2323
// }
2424
},
25+
{
26+
"name": "Python: Django",
27+
"type": "python",
28+
"request": "launch",
29+
"program": "${workspaceFolder}/manage.py",
30+
"console": "integratedTerminal",
31+
"args": ["runserver"],
32+
"django": true,
33+
"justMyCode": true
34+
},
35+
{
36+
"name": "Python: Flask",
37+
"type": "python",
38+
"request": "launch",
39+
"program": "${workspaceFolder}/.venv/bin/flask",
40+
"console": "integratedTerminal",
41+
"args": [
42+
"run"
43+
],
44+
"justMyCode": true
45+
},
2546
{
2647
"name": "Python: Flet",
2748
"type": "python",
@@ -38,16 +59,6 @@
3859
},
3960
"justMyCode": true
4061
},
41-
{
42-
"name": "Python: Django",
43-
"type": "python",
44-
"request": "launch",
45-
"program": "${workspaceFolder}/manage.py",
46-
"console": "integratedTerminal",
47-
"args": ["runserver"],
48-
"django": true,
49-
"justMyCode": true
50-
},
5162
{
5263
"name": "Python: Debug Tests",
5364
"type": "python",

0 commit comments

Comments
 (0)