john c35c4a9b6e 优化sql il y a 7 mois
..
.zed 77b1d34af2 epub 编辑 il y a 8 mois
db c35c4a9b6e 优化sql il y a 7 mois
environment 99074699af 重构前的备份 il y a 7 mois
router c35c4a9b6e 优化sql il y a 7 mois
types 77b1d34af2 epub 编辑 il y a 8 mois
utils 09680b4549 在线解压epub il y a 8 mois
.gitignore f6de559106 多种文件格式解析 il y a 8 mois
.npmrc 77b1d34af2 epub 编辑 il y a 8 mois
.yarnrc 77b1d34af2 epub 编辑 il y a 8 mois
Dockerfile 6cfee38918 Dockerfile il y a 7 mois
README.md 1ed7968023 css il y a 7 mois
app.js 09680b4549 在线解压epub il y a 8 mois
docker-compose.yml d8eb0e4f0a Dockerfile il y a 7 mois
ecosystem.config.cjs 77b1d34af2 epub 编辑 il y a 8 mois
jsconfig.json c35c4a9b6e 优化sql il y a 7 mois
package.json 1ed7968023 css il y a 7 mois
pm2.config.js 77b1d34af2 epub 编辑 il y a 8 mois
setHtml.js 99074699af 重构前的备份 il y a 7 mois
tree.js 99074699af 重构前的备份 il y a 7 mois
yarn.lock 1ed7968023 css il y a 7 mois

README.md

DB

地址: localhost:3306 账号密码:root:12345678

dockerfile

创建镜像

docker build -t hht/epub2:v1 .

打包

docker save -o ./epub.tar hht/epub2:v1

启动

docker run -p 3000:3000 -v /f/code/newCashBook/epub_node:/app hht/epub2:v1

清理数据库

DELETE FROM epub_manage.book;
DELETE FROM epub_manage.author;
DELETE FROM epub_manage.category;
DELETE FROM epub_manage.style;
DELETE FROM epub_manage.style_link_book;
DELETE FROM epub_manage.chapter;
DELETE FROM epub_manage.files;
DELETE FROM epub_manage.book_link_file;