gxgk wechat server
1.0.0
이 코드는 더 이상 유지되지 않습니다.
이 프로젝트는 더 이상 유지되지 않습니다. 오픈 소스의 목적은 초보자에게 참조 데모를 제공하는 것입니다.
캠퍼스 WeChat 공개 계정의 백엔드는 학교 학생들에게 일련의 정보 조회와 편리한 서비스를 제공합니다.
미리보기 :
주요 기능 :
다른 :
추가 지침:
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