diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,4 +1,4 @@ -.PHONY: doc all release shell +.PHONY: doc all release shell run1 run2 run3 all: clear; cargo build --all-features @@ -11,3 +11,12 @@ release: shell: nix-shell + +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 |