Rykian / clockwork

A scheduler process to replace cron.
MIT License
543 stars 66 forks source link

Heroku Instructions #31

Open tomrossi7 opened 6 years ago

tomrossi7 commented 6 years ago

The link for the Quickstart for Heroku from the readme isn't working. I'd love to see an example of how to set this up with Heroku...

rylanb commented 6 years ago

My Procfile for Rails app on Heroku looks like:

web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-production}
clock: bundle exec clockwork config/clock.rb

if that helps!