运行 Heroku ps 并没有给我预期的结果,bundle exec unicorn -p $PORT -c ./config/unicorn.rb
而是常规的bin/rails server -p $PORT -e $RAILS_ENV
,尽管我的 Procfile 具有以下内容:
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
和适当的 unicorn.rb 文件设置。
当我运行Heroku run bash
Procfile 时没有列出。