perf: improve compression reliability and deployment safety

This commit is contained in:
237899745
2026-07-25 10:29:49 +08:00
parent 06220ca921
commit 9d7668bdee
34 changed files with 1391 additions and 1042 deletions

View File

@@ -23,7 +23,7 @@
| 缓存/队列 | Redis | 会话管理、限流、任务队列Streams |
| 前端 | Vue3 + TypeScript | SPA 单页应用 |
| 认证 | JWT + API Key | 双重认证机制 |
| 存储 | S3 兼容 / 本地 | 对象存储 + 预签名 URL推荐 |
| 存储 | 本地文件系统 | S3/MinIO 尚在规划中 |
| 计费 | Stripe | Checkout/Portal/Webhook |
## 目录结构
@@ -95,8 +95,7 @@ cp .env.example .env
# 启动 PostgreSQL / Redis开发
docker compose -f docker/docker-compose.dev.yml up -d
# 初始化数据库
psql "$DATABASE_URL" -f migrations/001_init.sql
# 首次启动时会自动按顺序执行 migrations/ 下的全部迁移
# 启动后端
cargo run