deployer/Makefile
2023-05-09 09:16:24 +02:00

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