adb23bc2a6
This patch set introduces a developer overview documentation page to Pegleg to help developers onboard. Change-Id: Ia453d76f024db39c6bdd97a44bfe1db1c25193f9
11 lines
315 B
Bash
Executable File
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
|