Home > Software design >  Procfile declared none
Procfile declared none

Time:03-17

I am trying to deploy to Heroku. I keep getting an application error. I created a ProcFile file without any extension, but Heroku doesn't seem to recognize it.

CodePudding user response:

You're correct that the file doesn't have an extension, but it needs to be called Procfile, exactly. Your file is called ProcFile with a capital F.

Rename it to Procfile, commit, and redeploy.

CodePudding user response:

The problem was solved by changing the ProcFile file to Procfile and there was more than one requirements.txt file It has been erased and create one requirements.txt file for all downloaded

  • Related