add docs server to tasks

This commit is contained in:
hay-kot 2021-03-20 13:42:17 -08:00
commit 8c243447b7

14
.vscode/tasks.json vendored
View file

@ -24,7 +24,7 @@
"group": "test"
},
{
"label": "Dev: Start local Backend",
"label": "Dev: Start Backend",
"command": "make backend",
"type": "shell",
"presentation": {
@ -34,7 +34,7 @@
"problemMatcher": []
},
{
"label": "Dev: Start local Frontend",
"label": "Dev: Start Frontend",
"command": "make vue",
"type": "shell",
"presentation": {
@ -42,6 +42,16 @@
"group": "groupA"
},
"problemMatcher": []
},
{
"label": "Dev: Start Docs Server",
"command": "make mdocs",
"type": "shell",
"presentation": {
"reveal": "always",
"group": "groupA"
},
"problemMatcher": []
}
]
}