20 lines
226 B
Makefile
20 lines
226 B
Makefile
format:
|
|
cargo-fmt
|
|
|
|
lint:
|
|
cargo clippy --fix
|
|
|
|
run: db-start
|
|
cargo run
|
|
|
|
build: format lint
|
|
cargo build --release
|
|
|
|
test:
|
|
cargo test -r -- --nocapture
|
|
|
|
db-start:
|
|
docker compose up postgresql -d
|
|
|
|
db-stop:
|
|
docker compose down
|