10 lines
188 B
Bash
10 lines
188 B
Bash
|
#!/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 ..
|