diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d42d6478d..df56f017d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": [] } ] }