Skip to content

Commit 78c3759

Browse files
committed
added launch.json
1 parent 40711f6 commit 78c3759

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ RhinoCompute.cs
2727
.DS_Store
2828
# vscode python stuff
2929
/src/tests/.vscode
30-
/src/ghhops-server-py/.vscode
3130
**/.vscode/.ropeproject
3231
/src/ghhops-server-py/dist
3332
/src/dist
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
}

0 commit comments

Comments
 (0)