homelab/serve-docs.sh

7 lines
158 B
Bash
Raw Normal View History

2021-10-12 00:57:38 +00:00
#!/bin/bash
[ ! -d "./docs/python" ] && python3 -m venv ./docs/python
. ./docs/python/bin/activate
pip install mkdocs-material==7.3.3
mkdocs serve
deactivate