foreman support #26

Open
opened 2013-06-24 23:14:40 +00:00 by andriytyurnikov · 1 comment
andriytyurnikov commented 2013-06-24 23:14:40 +00:00 (Migrated from github.com)

What is an usual way to run apps using foreman ?

What is an usual way to run apps using foreman ?
johnbintz commented 2013-06-25 13:43:46 +00:00 (Migrated from github.com)

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?

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: ``` ruby # 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?
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: github-migration/guard-rails#26
No description provided.