2022-06-24 08:31:11 +00:00
|
|
|
.PHONY: doc all release shell run1 run2 run3
|
2021-09-28 08:13:14 +00:00
|
|
|
|
2020-04-05 21:33:42 +00:00
|
|
|
all:
|
2022-05-24 10:16:39 +00:00
|
|
|
clear; cargo build --all-features
|
2020-06-30 15:18:42 +00:00
|
|
|
|
2021-09-28 08:13:14 +00:00
|
|
|
doc:
|
|
|
|
cd doc/book; mdbook build
|
|
|
|
|
2021-05-28 11:58:47 +00:00
|
|
|
release:
|
2021-10-04 16:27:57 +00:00
|
|
|
nix-build --arg release true
|
|
|
|
|
|
|
|
shell:
|
|
|
|
nix-shell
|
2022-06-24 08:31:11 +00:00
|
|
|
|
|
|
|
run1:
|
|
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config.1.toml server
|
|
|
|
|
|
|
|
run2:
|
|
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config.2.toml server
|
|
|
|
|
|
|
|
run3:
|
|
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config.3.toml server
|