Heroku Error H14 (No web processes running) Heroku Error H14 (No web processes running) heroku heroku

Heroku Error H14 (No web processes running)


I had the same problem, but for me it was because I needed to run heroku ps:scale web=1


The name of your web process must be web, and this is the process that Heroku will always scale to '1' on initial deploy.

Other services in the Procfile can be called what you want, but you need to scale them initially (so you can have dev only processes in there if you want).

More information here: http://neilmiddleton.com/the-procfile-is-your-friend/(the cached version: https://web.archive.org/web/20130926005616/http://www.neilmiddleton.com/the-procfile-is-your-friend)