Skip to content

Commit 3491e26

Browse files
authored
+ tasks.json
1 parent 9e78b37 commit 3491e26

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/.vscode/tasks.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "func",
6+
"label": "func: host start",
7+
"command": "host start",
8+
"problemMatcher": "$func-python-watch",
9+
"isBackground": true,
10+
"dependsOn": "pip install (functions)"
11+
},
12+
{
13+
"label": "pip install (functions)",
14+
"type": "shell",
15+
"osx": {
16+
"command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
17+
},
18+
"windows": {
19+
"command": "${config:azureFunctions.pythonVenv}\\Scripts\\python -m pip install -r requirements.txt"
20+
},
21+
"linux": {
22+
"command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
23+
},
24+
"problemMatcher": []
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)