Update collaboration doc
Add some diagrams
This commit is contained in:
parent
9c5c9fdc36
commit
e897d1c98e
8 changed files with 157 additions and 148 deletions
14
script/generate-doc-diagrams
Executable file
14
script/generate-doc-diagrams
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Install the `plantuml` utility if it is not already installed.
|
||||
if [[ -x plantuml ]]; then
|
||||
brew install plantuml
|
||||
fi
|
||||
|
||||
# Generate SVGs from all of the UML files.
|
||||
plantuml \
|
||||
-nometadata \
|
||||
-overwrite \
|
||||
-tsvg \
|
||||
-o ../svg \
|
||||
docs/diagrams/src/*
|
Loading…
Add table
Add a link
Reference in a new issue