feat: add asset library download button, fix env ports, update README, optimize semantics, support multi-image reading, and allow voiceover analysis for silent segments

This commit is contained in:
saturn
2026-03-13 17:37:52 +08:00
parent be1853534a
commit eec27fbabf
41 changed files with 977 additions and 187 deletions

View File

@@ -81,18 +81,28 @@ docker compose down && docker compose up -d --build
```bash
git clone https://github.com/saturndec/waoowaoo.git
cd waoowaoo
# 复制环境变量配置文件(必须在 npm install 之前完成)
cp .env.example .env
# ⚠️ 编辑 .env填入你的 AI API KeyNEXTAUTH_URL 默认已是 http://localhost:3000无需修改
npm install
# 只启动基础设施
# 注意docker-compose.yml 将服务映射到非标准端口,.env.example 已按此预设
mysql:13306 redis:16379 minio:19000
docker compose up mysql redis minio -d
# 运行数据库迁移
# 初始化数据库表结构(首次必须执行,跳过会导致启动后报错)
npx prisma db push
# 启动开发服务器
npm run dev
```
> [!WARNING]
> 跳过 `npx prisma db push` 会导致所有数据库表不存在,启动后报错 `The table 'tasks' does not exist`。请务必先运行此命令再启动开发服务器。
---
访问 [http://localhost:13000](http://localhost:13000)(方式一、二)或 [http://localhost:3000](http://localhost:3000)(方式三)开始使用!