hotel-service/justfile

24 lines
252 B
Makefile

run:
cargo run
fmt:
cargo fmt
lint:
cargo clippy
release:
cargo build --release
run_migrations:
diesel migration run
redo_migrations:
diesel migration redo
test:
cargo test --all-features
coverage:
cargo llvm-cov