db6183405e
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
349 B
Makefile
21 lines
349 B
Makefile
set dotenv-load
|
|
|
|
# Run the server (reads .env)
|
|
run:
|
|
cargo run -p server
|
|
|
|
# Run the full test suite
|
|
test:
|
|
cargo test --workspace
|
|
|
|
# Format with the nightly toolchain
|
|
fmt:
|
|
cargo +nightly fmt
|
|
|
|
# Lint, treating warnings as errors
|
|
lint:
|
|
cargo clippy --workspace --all-targets -- -D warnings
|
|
|
|
# Format, lint, and test
|
|
check: fmt lint test
|