# Lakehouse task runner default: @just --list # Build all crates build: cargo build --workspace # Run all tests test: cargo test --workspace # Run gateway run: cargo run --bin gateway # Check without building check: cargo check --workspace # Format all code fmt: cargo fmt --all # Lint clippy: cargo clippy --workspace -- -D warnings