Procfile 614 B

12345678910111213
  1. # Procfile for development using the new threaded worker (scheduler, twitter stream and delayed job)
  2. web: bundle exec rails server
  3. jobs: bundle exec rails runner bin/threaded.rb
  4. # Possible Profile configuration for production:
  5. # web: bundle exec unicorn -c config/unicorn/production.rb
  6. # jobs: bundle exec rails runner bin/threaded.rb
  7. # Old version with separate processes (use this if you have issues with the threaded version)
  8. # web: bundle exec rails server
  9. # schedule: bundle exec rails runner bin/schedule.rb
  10. # twitter: bundle exec rails runner bin/twitter_stream.rb
  11. # dj: bundle exec script/delayed_job run