flask开发环境设置,在powershell终端窗口,可以通过一下方式设置:
# 设置当前app实例
$env:FLASK_APP="app:create_app()"
#将当前环境设置为开发模式
$env:flask_env='development'
# 运行app(默认启动http://127.0.0.1:5000)
flask run
# 运行app(指定启动http://192.168.2.10/)
flask run -h 192.168.2.10 -p 80