Heroku 找不到 procfile - Flask-SocketIO

Heroku not finding procfile - Flask-SocketIO

我正在尝试将 flask-socketio 项目部署到网络上,但构建没有注意到网络测功机。我创建了一个名为 Procfile 的文件,没有扩展名。在 procfile 里面有

web:gunicorn manage:app

我应该将管理更改为 manage.py 吗?为什么构建看起来像

-----> Python app detected
-----> Installing requirements with pip
-----> Discovering process types
-----> Compressing...
       Done: 46.1M
-----> Launching...
       Released v32
       https://use-chats.herokuapp.com/ deployed to Heroku

有一次它说它找到了一个网络测功机,但现在不是了。

我认为 Procfile 需要 <process_type>: 和 运行 命令之间的 space:

web: gunicorn manage:app

有用的资源:

https://devcenter.heroku.com/articles/python-gunicorn