├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── convert.py ├── requirements.txt ├── static ├── main.css └── upload.js ├── templates └── index.html.j2 ├── web.py └── web.wsgi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn web:app --timeout 60 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/convert.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | opencc 3 | gunicorn -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/static/main.css -------------------------------------------------------------------------------- /static/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/static/upload.js -------------------------------------------------------------------------------- /templates/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/templates/index.html.j2 -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/web.py -------------------------------------------------------------------------------- /web.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneapptech/epub_convert/HEAD/web.wsgi --------------------------------------------------------------------------------