Get started quickly.

Curated documentation to enable yourself or your peers to get setup quickly and reliably. This is crucial to getting on with your work and letting your team solve problems, not fight with their tools. We must get on with building, testing, crafting, and keeping our standards high. There is mission critical work to do.

Terminal
# Rust
cargo test && cargo fmt && cargo check
cargo run

# Node (pnpm)
pnpm run test && pnpm run format && pnpm run lint:fix
pnpm run dev

# Python (uv)
uv init example && cd example
uv add ruff pytest --dev
uv run ruff check && uv run pytest
uv lock && uv sync

Ready to finish configuring your system and get on with learning, building, and testing?

It is a habit of mine to document my learnings and exploration here, to make it easier for all of us to make progress.