Running Heroku ps is not giving me the expected outcome of bundle exec unicorn -p $PORT -c ./config/unicorn.rb
but the regular bin/rails server -p $PORT -e $RAILS_ENV
, despite my having a Procfile with the following:
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
and the appropriate unicorn.rb file setup.
When I run Heroku run bash
the Procfile is not listed.