johnbintz / guard-rails

No longer maintained. Latest version is at https://github.com/ranmocy/guard-rails
35 stars 53 forks source link

foreman support #26

Open andriytyurnikov opened 11 years ago

andriytyurnikov commented 11 years ago

What is an usual way to run apps using foreman ?

johnbintz commented 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?