I am little confused on the usage of the Procfile
on development in local machine and in heroku
In order to start rails in my local machine I need
web: bundle exec rails server -p $PORT
worker: bundle exec rake jobs:work
which works when I use foreman
but heroku runs
bundle exec thin start -R config.ru -e production -p 48378
What do I write in the Procfile
so it would be fine for my local machine and for heroku?