aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMendes <mendes.oulamara@pm.me>2022-10-04 18:14:49 +0200
committerMendes <mendes.oulamara@pm.me>2022-10-04 18:14:49 +0200
commit829f815a897b04986559910bbcbf53625adcdf20 (patch)
tree6db3c27cff2aded754a641d1f2b05c83be701267 /Makefile
parent99f96b9564c9c841dc6c56f1255a6e70ff884d46 (diff)
parenta096ced35562bd0a8877a1ee2f755be1edafe343 (diff)
downloadgarage-829f815a897b04986559910bbcbf53625adcdf20.tar.gz
garage-829f815a897b04986559910bbcbf53625adcdf20.zip
Merge remote-tracking branch 'origin/main' into optimal-layout
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 18 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c0ebc075..23e10f78 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,27 @@
-.PHONY: doc all release shell
+.PHONY: doc all release shell run1 run2 run3
all:
clear; cargo build
-doc:
- cd doc/book; mdbook build
-
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