File size: 216 Bytes
4e909c7 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# filepath: build-docs.sh
# Install dependencies
pip install mkdocs mkdocs-material mkdocstrings mkdocstrings-python mkdocs-autorefs mkdocs-click
# Build static site
mkdocs build
# Output is in ./site/ |