bbj/gendocs.sh

10 lines
179 B
Bash
Raw Permalink Normal View History

2017-05-04 02:35:47 +00:00
#!/bin/sh
# Generate the documentation site.
# Invoke with no arguments in the base repo directory.
# Nothing magical here.
python3 ./mkendpoints.py
2017-05-04 02:42:59 +00:00
cd ./docs
2017-05-04 02:35:47 +00:00
mkdocs build
cd ..