Add task to serve documentation.

This commit is contained in:
Anand Patel
2024-02-29 01:06:45 +00:00
parent 42e841d1e6
commit 5ccc8d12f0

10
.vscode/tasks.json vendored
View File

@@ -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",
}
]
}