I'm trying to use the startup command to run a Procfile so that my delayed_job workers are loaded. I've changed the startup command to foreman start and the server starts fine but the workers do not. I'm not getting any errors but none of my jobs are ever executed.
Procfile
web: bundle exec rails s -p $PORT
worker: bundle exec rake jobs:work