From 5ccc8d12f03a4bd0e28931ecb43c2065473af392 Mon Sep 17 00:00:00 2001 From: Anand Patel Date: Thu, 29 Feb 2024 01:06:45 +0000 Subject: [PATCH] Add task to serve documentation. --- .vscode/tasks.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fff9f33fa..f0f00162a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -55,6 +55,16 @@ "command": "python3 -m pytest cookbook/tests", "dependsOn": ["Setup Tests"], "group": "test", + }, + { + "label": "Setup Documentation Dependencies", + "type": "shell", + "command": "pip install mkdocs-material mkdocs-include-markdown-plugin", + }, + { + "label": "Serve Documentation", + "type": "shell", + "command": "mkdocs serve", } ] } \ No newline at end of file