Skip to content

Commit a1ccb54

Browse files
authored
chore: add just recipes for docs (#222)
* docs: add short guide for migrations * docs: extend * feat: mkdocs * chore: cleanup * fix: rerun docs gen after fixes * fix: add pyproject becuase we actually need it * chore: add commands to wwork with docs * fix: recipe
1 parent f30e6bb commit a1ccb54

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

justfile

+7
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ alias l := lint
1010
install-tools:
1111
cargo install cargo-binstall
1212
cargo binstall cargo-insta taplo-cli
13+
cargo binstall --git "https://github.com/astral-sh/uv" uv
14+
1315

1416
# Upgrades the tools needed to develop
1517
upgrade-tools:
1618
cargo install cargo-binstall --force
1719
cargo binstall cargo-insta taplo-cli --force
20+
cargo binstall --git "https://github.com/astral-sh/uv" uv --force
1821

1922
# Generates code generated files for the linter
2023
gen-lint:
@@ -65,6 +68,10 @@ lint-fix:
6568
cargo clippy --fix
6669
cargo run -p rules_check
6770

71+
serve-docs:
72+
uv sync
73+
uv run mkdocs serve
74+
6875
# When you finished coding, run this command. Note that you should have already committed your changes.
6976
ready:
7077
git diff --exit-code --quiet

root-file.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)