Open andriytyurnikov opened 11 years ago
Well first, this project's moved to https://github.com/ranmocy/guard-rails. Second, the reason the project moved over there is because I use Foreman myself now, and I typically set things up like this:
# Procfile
# run with bundle exec foreman
# let foreman run your app
rails: rails s -p $PORT
# all guards (livereload, etc) except for rails,
# and turn off guard interactivity, you won't need it
guard: guard -i
Make sense?
What is an usual way to run apps using foreman ?