garage/Makefile
Alex 0e5175abee
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is passing
Report progress of scrub and block repair
2022-06-27 16:52:46 +02:00

28 lines
639 B
Makefile

.PHONY: doc all release shell run1 run2 run3
all:
clear; cargo build --all-features
release:
nix-build --arg release true
shell:
nix-shell
# ----
run1:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config1.toml server
run1rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config1.toml server
run2:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config2.toml server
run2rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config2.toml server
run3:
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config3.toml server
run3rel:
RUST_LOG=garage=debug ./target/release/garage -c tmp/config3.toml server