- 完成 T-001A: 前端项目初始化 (Next.js 14 + TypeScript + Tailwind CSS) - 完成 T-001B: 后端项目初始化 (FastAPI + SQLAlchemy + asyncpg) - 完成 T-002: 数据库配置 (KolVideo 模型 + 索引 + 测试) - 完成 T-003: 基础 UI 框架 (Header/Footer 组件 + 品牌色系) - 完成 T-004: 环境变量配置 (前后端环境变量) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
358 B
Plaintext
28 lines
358 B
Plaintext
# Web Framework
|
|
fastapi>=0.104.0
|
|
uvicorn[standard]>=0.24.0
|
|
|
|
# Database
|
|
sqlalchemy>=2.0.0
|
|
asyncpg>=0.29.0
|
|
alembic>=1.12.0
|
|
|
|
# HTTP Client
|
|
httpx>=0.25.0
|
|
|
|
# Data Validation
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
|
|
# Excel Export
|
|
openpyxl>=3.1.0
|
|
|
|
# Testing
|
|
pytest>=7.4.0
|
|
pytest-asyncio>=0.21.0
|
|
pytest-cov>=4.1.0
|
|
httpx>=0.25.0
|
|
|
|
# Development
|
|
python-dotenv>=1.0.0
|