pegleg/tools/gate/build-docs.sh
Felipe Monteiro adb23bc2a6 docs: Add developer overview guide
This patch set introduces a developer overview documentation
page to Pegleg to help developers onboard.

Change-Id: Ia453d76f024db39c6bdd97a44bfe1db1c25193f9
2018-09-13 18:28:58 -06:00

11 lines
315 B
Bash
Executable File

#!/usr/bin/env bash
# Builds documentation and generates documentation diagrams from .uml
# files. Must be run from root project directory.
set -ex
rm -rf doc/build
sphinx-build -b html doc/source doc/build/html -W -n -v
python -m plantuml doc/source/diagrams/*.uml
mv doc/source/diagrams/*.png doc/source/images