gxgk wechat server
1.0.0
This code is no longer being maintained.
项目已经不再维护,开源的目的更多是给新手一个参考 Demo
校园微信公众号后端,为在校学生提供一系列信息查询与便民服务。
预览:
主要功能:
其他:
补充说明:
安装 MySQL、Redis
略
安装依赖
pip install -r requirements.txt
创建配置文件
cp instance/config.example instance/config.py
vi instance/config.py
初始化数据库
# into Python shell
>>> from main.models import db
>>> db.create_all()
运行
python run.py
运行队列任务
celery -A main.celery worker --beat -l info
测试
这个开发者很懒,暂时没写下什么测试……
部署
# using gunicorn
pip install gunicorn
# run
gunicorn -w 3 run:app -p wechat.pid -b 127.0.0.1:8000 -D --log-level warning --error-logfile gunicorn-error.log
# reload
kill -HUP `cat wechat.pid`
MIT