17 lines
201 B
Makefile
17 lines
201 B
Makefile
format:
|
|
cargo-fmt
|
|
|
|
run: format db-start
|
|
cargo run
|
|
|
|
build: format
|
|
cargo build --release
|
|
|
|
test:
|
|
cargo test -r -- --nocapture
|
|
|
|
db-start:
|
|
docker compose up postgresql -d
|
|
|
|
db-stop:
|
|
docker compose down
|