- T40 UI 审计计划和结果文档(docs/qa/) - wiki 更新:miniprogram 设计系统合规审计记录 + index 关键数字更新 - 审计 V2 完整报告(docs/audits/v2/) - 讨论记录文档(docs/discussions/) - 设计规格和实施计划(docs/superpowers/) - 角色测试计划和结果(docs/qa/role-test-*) - Docker 生产部署配置
58 lines
505 B
Plaintext
58 lines
505 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitea
|
|
|
|
# Documentation
|
|
docs/
|
|
wiki/
|
|
*.md
|
|
!README.md
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Screenshots and temp files
|
|
screenshots/
|
|
tmp/
|
|
*.log
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
*.txt
|
|
!config/*.toml
|
|
|
|
# Python
|
|
*.py
|
|
__pycache__/
|
|
|
|
# Test artifacts
|
|
plans/
|
|
.claude/
|
|
|
|
# Docker
|
|
docker/
|
|
|
|
# Build artifacts (rebuilt in container)
|
|
target/
|
|
**/node_modules/
|
|
**/dist/
|
|
|
|
# Environment files (use docker env)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Large binary files
|
|
*.traineddata
|