Skip to content

Latest commit

 

History

History
 
 

web

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:使用我的导出

看这里

运行

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();