Skip to content

Commit

Permalink
🔄 synced local 'justfile' with remote 'common/justfile/web'
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjohnst86 committed Jun 28, 2024
1 parent 12c139c commit 7519c7a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
@_default:
just --list --unsorted

# Generate PNG images from PlantUML files
generate-puml:
# Generate SVG images from all PlantUML files
generate-puml-all:
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:latest -tsvg "**/*.puml"

# Generate SVG image from specific PlantUML file
generate-puml name:
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:latest -tsvg "**/{{name}}.puml"

# Build the website using Quarto
build-website:
docker run --rm -v $(pwd):/site -w /site ghcr.io/quarto-dev/quarto:latest quarto render

0 comments on commit 7519c7a

Please sign in to comment.