captains-log/justfile
2025-08-22 19:12:17 -07:00

22 lines
222 B
Makefile

# Temporary until we have a frontend.
set working-directory := 'backend'
dev:
cargo run
build:
cargo build
test-unit:
cargo test
fmt:
cargo fmt --check
lint:
cargo clippy
clean:
cargo clean