We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e78b37 commit 3491e26Copy full SHA for 3491e26
src/.vscode/tasks.json
@@ -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
23
24
+ "problemMatcher": []
25
+ }
26
+ ]
27
+}
0 commit comments