feat: 添加线索引擎、NLQ、场景检测、前端界面等核心功能模块

This commit is contained in:
freedakgmail
2026-06-16 08:15:15 +08:00
parent 7b1e2b10a8
commit 48340f6011
62 changed files with 6772 additions and 65 deletions
+6 -1
View File
@@ -39,8 +39,13 @@ pip install -r requirements-dev.txt
alembic upgrade head # 建表
uvicorn app.main:app --reload
# 3. 前端
# 3. 前端(端口 5173,经 Vite 代理转发后端)
cd frontend && npm install && npm run dev
# 4. 生成演示数据(可选,让看板有线索可看)
cd backend && python -m scripts.seed_demo
```
> 说明:本项目不使用 Docker,开发期直接使用本机 PostgreSQL 16。
> 演示:启动后端+前端后打开 http://localhost:5173 。前端 npm 源建议用国内镜像
> `npm config set registry https://registry.npmmirror.com`);后端 pip 用清华镜像加速。