基于Python+Flask的聊天系统。

SongZihuan 070fa95adc fix: 删除多余import 2 éve
app 070fa95adc fix: 删除多余import 2 éve
configure 423c39b964 feat: 修复SECRET_KEY 2 éve
migrations 8a03383254 feat: 允许comment的father_id为null 2 éve
static dc88689ea7 feat: 实现主页基本架构 2 éve
templates da0add42c7 feat: 添加错误页面 2 éve
.gitignore 6366765e33 feat: 基础架构 2 éve
README.md 8a03383254 feat: 允许comment的father_id为null 2 éve
main.py c711d1ee55 fix: 修复拼写错误 2 éve
requirements.txt 10b3011cc0 feat: 构建假数据 2 éve

README.md

HTalk

基于Python-Flask的沟通交流平台。

初始化数据库

使用migration

$ flask db upgrade 566a5752c06e
$ flask shell
$ >>> create_all()
$ >>> quit()

不使用migration

$ flask shell
$ >>> create_all()
$ >>> quit()