Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Created July 17, 2012 18:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wrburgess/3131246 to your computer and use it in GitHub Desktop.
Save wrburgess/3131246 to your computer and use it in GitHub Desktop.
Getting Started with Foreman

Using Foreman

References

Installation

Terminal command

gem install foreman

Gemfile entry

group :development do
  gem "foreman"
end

Create a Procfile file

name file 'Procfile.local'

Example Procfile.local

beanstalk: beanstalkd
worker:    ./script/worker
faye:      rackup faye.ru -s thin -E production

Validate your Procfile

Terminal command

foreman check

Run Foreman

Terminal command

foreman start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment