Skip to content

Instantly share code, notes, and snippets.

@nthj
Last active January 3, 2016 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nthj/8421896 to your computer and use it in GitHub Desktop.
Save nthj/8421896 to your computer and use it in GitHub Desktop.
Boot up all of your dependencies for a Rails app at once with `foreman start -f Procfile.dev`
bundler: bundle exec guard --plugin bundler --no-interactions
db: postgres -D /opt/boxen/homebrew/var/postgres
integration: bundle exec guard --plugin cucumber --no-interactions
mailcatcher: mailcatcher --foreground --verbose
redis: redis-server /opt/boxen/homebrew/etc/redis.conf
test: bundle exec guard --plugin rspec --no-interactions
web: bundle exec guard --plugin unicorn --no-interactions
worker: bundle exec sidekiq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment