deployer/Makefile
2023-04-18 12:06:56 +02:00

17 lines
192 B
Makefile

format:
cargo-fmt
run: format
cargo run
build: format
cargo build --release
test:
cargo test -r -- --nocapture
db-start:
docker compose up postgresql -d
db-stop:
docker compose down