Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 813 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 813 Bytes

web端

注意:源代码中包含Google Analytics分析代码,index.html, search.htmlresource.html。如果自己使用,要记得去除哦

requirements

  • tornado
  • mongodb
  • pymongo
  • cryptography

导入数据

方法1: 自己迁移数据

  1. 下载MySQL的数据
  2. 导入数据到MySQL
  3. 运行 python prepare/convert_db.py

方法2:使用我的导出

参考 README.md

运行

python server.py

Docker

参考这里

MongoDB index

use zimuzu;

db.getCollection('yyets').createIndex({"data.info.id": 1});

db.getCollection('yyets').createIndex({"data.info.views" : -1});

db.getCollection('yyets').createIndex({"data.info.area" : 1});

db.getCollection('yyets').getIndexes();