Python 3 Django on App Engine Standard: App Fails to Start

不问归期 提交于 2019-12-04 09:19:32

You may need to add entrypoint to your app.yaml

runtime: python37
entrypoint: gunicorn -b :8080 my_site.wsgi

...(remaining parts of your app.yaml)

Reference: https://cloud.google.com/appengine/docs/standard/python3/runtime

You can also deploy it without entrypoint but your app object needs to be located in main.py file in root directory.

Check example description of such deployment here

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!