Commit Graph

4 Commits

Author SHA1 Message Date
chiguyong 218ece564d fix: Docker deployment optimization
- Replace postgres:15-alpine with pgvector/pgvector:pg15 (built-in vector extension)
- Remove init-db.sh (pgvector image includes extension, SQL init script instead)
- Add multi-stage Dockerfile for backend (development/runtime targets)
- Add development stage to frontend Dockerfile
- Update .env.example with correct passwords and Docker-internal URLs
- Add POSTGRES_PASSWORD/REDIS_PASSWORD to .env for Docker Compose
- Use named volume for frontend node_modules
- Add backend healthcheck to docker-compose.yml
2026-06-01 23:10:29 +08:00
chiguyong 4f86f2bd62 chore: Plan 004 - launch readiness sprint (timezone fixes, health check, JWT secret) 2026-06-01 20:35:56 +08:00
chiguyong 9e63915f42 feat: 完成系统真实化改造 + Mock清除 + 文档编写
- 实现 Onboarding 后端 API(6个端点完整对接)
- 接入百炼 DashScope LLM(qwen3-coder-plus 真实引用检测)
- 修复知识库 MockEmbedder(自动检测 API Key 切换真实 Embedder)
- 内容生成对接 RAG 知识库检索
- 清除前端 onboarding 硬编码假数据(改为错误提示+重试)
- 移除模拟加载延迟(setTimeout)
- Pipeline dry-run 模式添加生产环境告警
- 添加操作流程文档和后续待办事项文档
- 更新 .gitignore 排除测试产物和临时文件
2026-05-23 21:35:10 +08:00
chiguyong a8927a18e6 feat: GEO平台MVP完整实现
- 后端: FastAPI + SQLAlchemy 2.0 + PostgreSQL + Redis
  - 用户认证(注册/登录/JWT)
  - 查询词CRUD管理
  - 引用数据统计与查询
  - CSV报告导出
  - Citation Engine引用检测引擎(Playwright)
  - APScheduler定时调度器

- 前端: Next.js 14 + TailwindCSS + shadcn/ui + Recharts
  - 登录/注册页面(NextAuth.js)
  - Dashboard数据总览(统计卡片+趋势图+平台对比图)
  - 查询词管理(完整CRUD+立即查询)
  - 引用记录查看与筛选
  - 报告导出(CSV)
  - 设置页面(用户信息+套餐对比)

- 基础设施: Docker Compose(PostgreSQL/Redis/FastAPI/Next.js)
- 测试: 39个pytest单元/集成测试全部通过
2026-04-23 14:46:43 +08:00