Add a simple Procfile for running the eventbus and auctioneer together

This commit is contained in:
R Tyler Croy 2019-12-30 07:42:19 -08:00
parent ba534c36c9
commit 74feb6172a
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 8 additions and 0 deletions

8
Procfile Normal file
View File

@ -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