mirror of
https://github.com/martinvonz/jj.git
synced 2025-02-06 20:42:10 +00:00
Our docs are built with MkDocs, which requires Python and several deps. Previously those deps were managed with Poetry, which is also written in Python. This commit replaces Poetry with `uv`, a Rust-based Python project/package manager, and thus removes several steps from the docs build process. Before: <install Python> <install pipx> pipx install poetry poetry install poetry run -- mkdocs serve After: <install uv> uv run mkdocs serve
28 lines
498 B
Text
28 lines
498 B
Text
/target/
|
|
/rendered-docs
|
|
.direnv
|
|
.envrc
|
|
# Generated by nix build, nix-build
|
|
result
|
|
# Generated by the insta crate
|
|
*.pending-snap
|
|
*.snap*
|
|
!cli/tests/cli-reference@.md.snap
|
|
# Per user insta settings.
|
|
# See https://insta.rs/docs/settings/#tool-config-file for details.
|
|
.config/insta.yaml
|
|
|
|
# mkdocs
|
|
/.venv
|
|
/.python-version
|
|
|
|
# Editor specific ignores
|
|
.idea
|
|
.vscode
|
|
.zed
|
|
|
|
# Generated by setting `JJ_TRACE` environment variable.
|
|
jj-trace-*.json
|
|
|
|
# To make working on buck2 easier (#1997, #4413)
|
|
/buck-out/
|