File tree 2 files changed +41
-1
lines changed
src/ghhops-server-py/.vscode
2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ RhinoCompute.cs
27
27
.DS_Store
28
28
# vscode python stuff
29
29
/src /tests /.vscode
30
- /src /ghhops-server-py /.vscode
31
30
** /.vscode /.ropeproject
32
31
/src /ghhops-server-py /dist
33
32
/src /dist
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
+ "program" : " ${file}" ,
12
+ "env" : {
13
+ "PYTHONPATH" : " ${workspaceFolder}"
14
+ },
15
+ "console" : " integratedTerminal" ,
16
+ "justMyCode" : true
17
+ },
18
+ {
19
+ "name" : " Python: HTTP" ,
20
+ "type" : " python" ,
21
+ "request" : " launch" ,
22
+ "program" : " ${file}" ,
23
+ "env" : {
24
+ "PYTHONPATH" : " ${workspaceFolder}"
25
+ },
26
+ "console" : " integratedTerminal" ,
27
+ "justMyCode" : true
28
+ },
29
+ {
30
+ "name" : " Python: RhinoInside" ,
31
+ "type" : " python" ,
32
+ "request" : " launch" ,
33
+ "program" : " ${file}" ,
34
+ "env" : {
35
+ "PYTHONPATH" : " ${workspaceFolder}"
36
+ },
37
+ "console" : " integratedTerminal" ,
38
+ "justMyCode" : true
39
+ }
40
+ ]
41
+ }
You can’t perform that action at this time.
0 commit comments