运行 "heroku ps:scale web=1" 时出错:"Couldn't find that process type (web)."
Error when running "heroku ps:scale web=1": "Couldn't find that process type (web)."
我正在尝试从 PyCharm 部署 Heroku Dash 应用程序。在 运行 部署它的代码之后,我得到了 Heroku error code“H14 - 没有 web dynos 运行ning”,其解决方案应该是 heroku ps:scale web=1
。这是我在尝试 运行 该行时遇到的错误:
Scaling dynos... !
▸ Couldn't find that process type (web).
已建议其他有此问题的人检查他们的 procfile。我的格式正确,名称为“Procfile”。其中是 web: gunicorn main:server
,其中 'main' 是我的应用程序的 Python 文件的名称。关于我可能做错了什么还有其他建议吗?
Procfile 已正确创建,但在部署前尚未提交。
我正在尝试从 PyCharm 部署 Heroku Dash 应用程序。在 运行 部署它的代码之后,我得到了 Heroku error code“H14 - 没有 web dynos 运行ning”,其解决方案应该是 heroku ps:scale web=1
。这是我在尝试 运行 该行时遇到的错误:
Scaling dynos... !
▸ Couldn't find that process type (web).
已建议其他有此问题的人检查他们的 procfile。我的格式正确,名称为“Procfile”。其中是 web: gunicorn main:server
,其中 'main' 是我的应用程序的 Python 文件的名称。关于我可能做错了什么还有其他建议吗?
Procfile 已正确创建,但在部署前尚未提交。