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 99567c4 commit 0544dabCopy full SHA for 0544dab
docs/.vscode/tasks.json
@@ -0,0 +1,27 @@
1
+{
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version": "2.0.0",
5
+ "tasks": [
6
+ {
7
+ "label": "Build Documentation",
8
+ "type": "shell",
9
+ "command": "docker run -v .:/app/docs -v ./../.artifacts:/app/.artifacts ghcr.io/mpdreamz/docset-builder:edge",
10
+ "problemMatcher": [],
11
+ "group": {
12
+ "kind": "build",
13
+ "isDefault": true
14
+ }
15
+ },
16
17
+ "label": "Serve Documentation",
18
19
+ "command": "docker run --expose 8080 -v .:/app/docs -v ./../.artifacts:/app/.artifacts ghcr.io/mpdreamz/docset-builder:edge serve",
20
21
22
23
24
25
26
+ ]
27
+}
0 commit comments