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.
# 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