我正在尝试在 Heroku 上运行我的第一个 Django 驱动的应用程序。我一直在关注本指南。该应用程序运行良好,使用:
python manage.py runserver
当我提交我所做的任何更改,然后尝试将其推送到 Heroku 时,一切似乎都很好,直到我访问 heroku URL。我收到“应用程序错误”页面。更多地关注:
heroku logs
我收到一堆似乎是相同的错误消息:
.......
2013-01-18T05:28:29+00:00 heroku[slugc]: Slug compilation finished
2013-01-18T05:28:29+00:00 app[web.1]: Error: "0.0.0.0:" is not a valid port number or address:port pair.
2013-01-18T05:28:31+00:00 heroku[web.1]: Process exited with status 1
2013-01-18T05:28:32+00:00 heroku[web.1]: Starting process with command `python manage.py runserver 0.0.0.0: --noreload`
2013-01-18T05:28:33+00:00 app[web.1]: Error: "0.0.0.0:" is not a valid port number or address:port pair.
另外,如果我做工头开始:
22:39:26 web.1 | started with pid 2499
22:39:26 web.1 | Error: "0.0.0.0:" is not a valid port number or address:port pair.
22:39:26 web.1 | exited with code 1
22:39:26 system | sending SIGTERM to all processes
SIGTERM received
我看了一个类似的问题,但我的 requirements.txt 文件中似乎有所有需要的东西。
谢谢您的帮助!