What is the reason for “Procfile declares types -> (none)” in Heroku?

前端 未结 11 1835
一整个雨季
一整个雨季 2020-12-14 09:06

I am trying to deploy a test app to Heroku --stack cedar but every time I do my Procfile is being ignored.

It should be saying this:

Procfile declare         


        
11条回答
  •  醉酒成梦
    2020-12-14 09:35

    The space between the Record name and the contents seems to be important:

    Use:

    web: python manage.py runserver

    and not

    web:python manage.py runserver

提交回复
热议问题