flaskbb部署笔记

https://flaskbb.org/

https://github.com/sh4nks/flaskbb/

https://flaskbb.readthedocs.io/en/latest/installation.html

在github下载源码
sudo git clone https://github.com/sh4nks/flaskbb.git

安装相关依赖
pip install -r requirements.txt
编译源文件
sudo flaskbb makeconfig
尝试启动查看是否成功安装
flaskbb --config flaskbb.cfg run

安装gunicorn中间件
pip install gunicorn

使用gunicorn启动
sudo flaskbb start --host 0.0.0.0 --port 80
 
原文地址:https://www.cnblogs.com/HacTF/p/7860149.html