我正在尝试将我的应用程序部署到应用程序引擎,但由于某些原因,我不能这样做。我的日志上说
关闭师父 原因:员工未能启动
我想这跟火鸟有关。我该怎么做?
我的app.yaml是
runtime: Python
env: flex
entrypoint: gunicorn -b :$PORT .wsgi
beta_settings:
cloud_sql_instance: /*mysqlinstance*/
runtime_config:
python_version: 3发布于 2017-12-13 19:47:00
所以我的解决方案:
我重新开始了!
我在云中创建了一个新项目,因为我使用的这个项目有很多复杂的地方。然后,我将django==1.10和gunicorn==19.7.1包含在requirements.txt文件中,并运行
pip install -r requirements.txt在虚拟环境中,然后部署到新项目中,一切都很好。
https://stackoverflow.com/questions/47718801
复制相似问题