Skip to content

Commit f3b9667

Browse files
authored
chore: 🔨 update config and build settings for quartodoc (#18)
## Description This PR updates the git ignore and justfile for quartodoc specific things. <!-- Select quick/in-depth as necessary --> This PR needs a quick review.
1 parent eff086c commit f3b9667

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,13 @@ cover/
6868
/.quarto/
6969
docs/.quarto/
7070
*.ipynb
71+
*.quarto_ipynb
7172
*.storage
7273

74+
# Quartodoc
75+
/docs/reference/
76+
objects.json
77+
7378
# Website generation
7479
_site
7580
_book

justfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
@_default:
22
just --list --unsorted
33

4+
run-all: install-deps format-python check-python run-tests
5+
46
# Generate SVG images from all PlantUML files
57
generate-puml-all:
68
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:latest -tsvg "**/*.puml"
@@ -55,9 +57,10 @@ reset-local:
5557
rm persistent_storage/raw/*.csv
5658

5759
# Build the documentation website using Quarto
58-
build-website:
60+
build-website: install-deps
5961
# To let Quarto know where python is.
6062
export QUARTO_PYTHON=.venv/bin/python3
63+
poetry run quartodoc build
6164
poetry run quarto render --execute
6265

6366
check-commit:

0 commit comments

Comments
 (0)