set dotenv-load default: @just --list build: cargo build --release check: SQLX_OFFLINE=true cargo check run: cargo run watch: cargo watch -x run test: cargo test test-verbose: cargo test -- --nocapture test-api: cargo test --test api -- --nocapture test-pagination: cargo test --test pagination -- --nocapture test-tap: cargo test --test tap_consumer -- --nocapture fmt: cargo fmt lint: cargo clippy -- -D warnings db-up: docker compose up -d postgres db-down: docker compose down migrate: cargo sqlx migrate run --source migrations sqlx-prepare: cargo sqlx prepare clean: cargo clean full-stack: docker compose up full-stack-build: docker compose up --build