1 Star 0 Fork 0

周林-Felix / flasky

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
boot.sh 263 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
source venv/bin/activate
while true; do
flask deploy
if [[ "$?" == "0" ]]; then
break
fi
echo Deploy command failed, retrying in 5 secs...
sleep 5
done
exec gunicorn -b :5000 --access-logfile - --error-logfile - flasky:app
Python
1
https://gitee.com/youtrip2010/flasky.git
git@gitee.com:youtrip2010/flasky.git
youtrip2010
flasky
flasky
master

搜索帮助