bbj/gendocs.sh

10 lines
188 B
Bash
Executable File

#!/bin/sh
# Generate the documentation site.
# Invoke with no arguments in the base repo directory.
# Nothing magical here.
python3 ./mkendpoints.py
cd ./documentation
mkdocs build
cd ..