feat: update web ui, docker make commands, and related docs/config

This commit is contained in:
liumangmang
2026-04-09 11:56:19 +08:00
parent 51be434f2a
commit 4ac755a7fe
27 changed files with 2718 additions and 507 deletions

View File

@@ -9,13 +9,22 @@ SVN 日志抓取与 AI 工作量分析工具,统一使用 Web 工作台入口
## 常用命令
```bash
# 一键启动Docker
make up
# 查看状态
make status
# 一键关闭
make down
# 编译
mvn clean compile
# 打包
mvn clean package -DskipTests
# 启动 Web
# 启动 Web(非 Docker 备用方式)
mvn spring-boot:run -Dspring-boot.run.mainClass=com.svnlog.web.WebApplication
```