chore: 清理仓库,移除无用文件

- 更新.gitignore文件
- 移除所有.md文档文件(保留README.md)
- 移除测试文件和临时文件
- 移除PHASE和交付报告文件
- 优化仓库结构,只保留源代码和必要配置

Co-Authored-By: Claude Sonnet <claude@anthropic.com>
This commit is contained in:
Claude
2026-01-25 00:36:46 +08:00
parent e71181f0a3
commit 28aa8b5f62
38 changed files with 31 additions and 19122 deletions

32
.gitignore vendored
View File

@@ -26,7 +26,7 @@ wheels/
# PyInstaller
*.manifest
*.spec
.spec
# Unit test / coverage reports
htmlcov/
@@ -39,9 +39,13 @@ coverage.xml
*.cover
.hypothesis/
.pytest_cache/
tests/.pytest_cache/
tests/*.png
# Environments
.env
.env.local
.env.production
.venv
env/
venv/
@@ -66,6 +70,7 @@ logs/
# Database
*.db
*.sqlite
*.sqlite3
# Uploads
@@ -92,3 +97,28 @@ dmypy.json
# VSCode
.vscode/
# Testing
test_*.py
*_test.py
tests/
# Documentation
*.md
docs/
PHASE*.md
DELIVERY*.md
SUMMARY*.md
!README.md
# Temporary files
*.tmp
*.temp
*.bak
*.backup
# Docker
.dockerignore
# Test reports
test_reports/