本文介绍了如何在英雄上部署夹层?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经创建了一个夹层项目,其名称是夹层 - 英文 - 测试
我创建一个具有如下内容的Procfile:



web:python manage.py run_gunicorn -b0.0.0.0:$PORT-w 3



接下来,我访问网站进行测试和我收到错误:内部服务器错误。
那么,请帮我帮忙,一步步或者一些建议部署夹层?



非常感谢你。

解决方案

您应该可以看到日志中的错误,您可以使用这个英雄工具。

  heroku日志


I have created a mezzanine project and its name is mezzanine-heroku-testI create a Procfile that has the content as follow:

web: python manage.py run_gunicorn -b "0.0.0.0:$PORT" -w 3

Next, I access to the website to test and I receive the error: Internal Server Error.So, Could you please help me deploy mezzanine on heroku step by step or some suggestion?

Thank you so much.

解决方案

You should be able to see the error in the logs which you can get to using the heroku tool.

heroku logs

这篇关于如何在英雄上部署夹层?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-18 20:37