gitextract_fuu3vrhz/ ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── commands/ │ └── __init__.py ├── config/ │ ├── __init__.py │ └── wsgi.ini ├── data/ │ ├── __init__.py │ └── dict.py ├── jsondict/ │ ├── anki.py │ └── search.py ├── manage.py ├── nginx-server.conf ├── nginx.conf ├── requirements.txt ├── start.sh ├── ui/ │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .postcssrc.js │ ├── README.md │ ├── build/ │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config/ │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.vue │ │ ├── components/ │ │ │ ├── Card.vue │ │ │ ├── Dictionary.vue │ │ │ ├── Login.vue │ │ │ ├── Main.vue │ │ │ ├── statistic/ │ │ │ │ ├── DayChart.vue │ │ │ │ └── index.vue │ │ │ └── wordlist/ │ │ │ ├── Form.vue │ │ │ ├── Learned.vue │ │ │ ├── List.vue │ │ │ ├── Setting.vue │ │ │ ├── ToLearn.vue │ │ │ └── index.vue │ │ ├── main.js │ │ ├── permission.js │ │ ├── request.js │ │ ├── router/ │ │ │ └── index.js │ │ └── store.js │ └── static/ │ └── .gitkeep └── wordai/ ├── __init__.py ├── api/ │ ├── __init__.py │ └── apis.py └── models/ ├── __init__.py └── models.py