通过shell脚本方式 启动flask项目

假设项目运行端口:8001
虚拟环境名称:test
shell脚本名称: start.sh
gunicorn 的启动配置为:dev_config.py

vim start.sh
填写如下内容
fSum()
{
pid=pid;
workon test;
gunicorn --config=dev_config.py index:app;
deactivate;

保存并退出
cd 到项目的跟目录,运行脚本:
. start.sh
将会自动重启当前flask项目

你可能感兴趣的:(通过shell脚本方式 启动flask项目)