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

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;