docs(project): 完善项目说明与实施规划

This commit is contained in:
zhiye.sun
2026-08-14 15:11:21 +08:00
parent 58f030aa76
commit 310f7abae1
5 changed files with 456 additions and 0 deletions

50
.gitignore vendored Normal file
View File

@@ -0,0 +1,50 @@
# Python 字节码与缓存
__pycache__/
*.py[cod]
*$py.class
# Python 构建与包文件
build/
dist/
*.egg-info/
.eggs/
# 虚拟环境
.venv/
venv/
env/
# Django 本地运行数据
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
# 测试、覆盖率和类型检查缓存
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/
# 本地配置、密钥与日志
.env
.env.*
!.env.example
*.log
logs/
# IDE 与编辑器
.idea/
.vscode/
*.swp
*.swo
# 操作系统文件
.DS_Store
Thumbs.db
Desktop.ini
# Playwright 本地产物
playwright-report/
test-results/