reference :https://github.com/collectiveidea/delayed_job
- download gem from the terminal
gem list delayed - add gem to gemfile `gem 'delayed_job_active_record'
- save file
- in the terminal
bundle install - in the terminal
rails g delayed_job:active_record- creates migrations and tables
- in the terminal
rake db:migrate - in the terminal
touch Procfile - in the Procfile:
worker: bundle exec rake jobs:work ```` * Heroku specific with the gems - in the terminal
foreman start- automatically runs off of port5000
- in the "reset password" method