Last active
March 11, 2025 11:18
-
-
Save Integralist/425a2a001c5bd51d06e10247739e7c13 to your computer and use it in GitHub Desktop.
Generate UML from Go Project Code #go #golang #uml #design #architecture #diagram
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install dependencies | |
brew install graphviz plantuml librsvg | |
# generate puml file for entire project | |
go run github.com/jfeliu007/goplantuml/cmd/goplantuml@latest -recursive ./ > Example.puml | |
# generate SVG from entire project | |
plantuml Example.puml -o "$pwd" -tsvg | |
# convert SVG into a PDF | |
rsvg-convert Example.svg -f pdf -o Example.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment