From 74feb6172a5d7f3c2498afba9abbf34b14add050 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Mon, 30 Dec 2019 07:42:19 -0800 Subject: [PATCH] Add a simple Procfile for running the eventbus and auctioneer together --- Procfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..aedd61f --- /dev/null +++ b/Procfile @@ -0,0 +1,8 @@ +# This Procfile is intended to be used by scripts/shoreman to run a development +# environment for Otto using locally built debug binaries +# + +eventbus: RUST_LOG=info ./target/debug/otto-eventbus +auctioneer: RUST_LOG=debug ./target/debug/otto-auctioneer + +# vim: ft=sh