标签:import main 安装 http 部署 install run div html
linux 安装 pyuthon
安装 pip install gunicorn
manage.py 文件
from app import create_app app = create_app() if __name__ == ‘__main__‘: app.run()
运行命令
gunicorn -D -b 0.0.0.0:12100 manage:app
-D 后台运行
gunicorn --config=config.py manage:app
带配置文件的启动
官网
http://docs.gunicorn.org/en/stable/run.html
标签:import main 安装 http 部署 install run div html
原文地址:https://www.cnblogs.com/angdh/p/10061709.html