我正在尝试将一个简单的Python存储库部署到Heroku,但是现在修复H14之后,我开始出现H10错误,这是我的logs --tail report
:
我尝试用Procfile
或web: gunicorn nbafeature.wsgi
配置web: gunicorn nbafeature:app
我用heroku restart
重新启动测功机时就崩溃了
这是heroku ps
日志:
本月剩余的免费dyno小时配额:550h 0m(100%)免费dyno 该应用的使用:0h 0m(0%)有关动态睡眠的更多信息 以及如何升级,请参见: https://devcenter.heroku.com/articles/dyno-sleeping
===网络(免费):gunicorn nbafeature:app(1)web.1:崩溃于2020/03/14 01:08:01 +0200(〜4m以前)
回购树:
.
├── conftest.py
├── Procfile
├── README.md
├── requirements.txt
├── src
│ ├── game_feature.py
│ └── __init__.py
└── test
└── game_feature_test.py
谢谢。