#!/bin/bash
# 开发环境部署
python3 flask_app.py >>/tmp/huxingbao.log 2>&1 &
# 生产环境部署方式,使用gunicorn进行部署。
# gunicorn -w 1 -b 0.0.0.0:5001 service:app