Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions template/README.md.jinja → template/README.qmd.jinja
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
format: gfm
execute:
echo: false
---

# {{ github_repo }}

<!-- TODO: Add a short description of the package and how to contribute. -->
Expand Down
6 changes: 5 additions & 1 deletion template/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
just --list --unsorted

# Run all build-related recipes in the justfile
run-all: install-deps format-md format-python check-python check-spelling check-commits build build-website
run-all: install-deps format-md format-python check-python check-spelling check-commits build build-website build-readme

# List all TODO items in the repository
list-todos:
Expand Down Expand Up @@ -74,3 +74,7 @@ build-website: build-docs
# Preview the documentation website with automatic reload on changes
preview-website: build-docs
uv run quarto preview --execute

# Re-build the README file from the Quarto version
build-readme:
uvx --from quarto quarto render README.qmd --to gfm
Loading