File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,8 @@ bower_components
5
5
/venv
6
6
__pycache__ /
7
7
* ~
8
- /.vscode /
9
- /src /.vscode
10
8
/src /flask_secret.py
11
9
# please never check svc.json into the repo!
12
10
svc.json
13
11
foo.py
14
12
.flaskenv
15
-
Original file line number Diff line number Diff line change
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: Flask" ,
9
+ "type" : " python" ,
10
+ "request" : " launch" ,
11
+ "module" : " flask" ,
12
+ "python" : " ${workspaceFolder}/venv/bin/python" ,
13
+ "env" : {
14
+ "FLASK_APP" : " main.py" ,
15
+ "FLASK_DEBUG" : " 1"
16
+ },
17
+ "args" : [
18
+ " run" ,
19
+ " --no-debugger" ,
20
+ " --no-reload"
21
+ ],
22
+ "jinja" : true ,
23
+ "justMyCode" : true
24
+ }
25
+ ]
26
+ }
You can’t perform that action at this time.
0 commit comments