feat: initial import (exclude templates and runtime temp files)

This commit is contained in:
237899745
2026-02-27 15:21:15 +08:00
commit 0951732c7a
33 changed files with 11698 additions and 0 deletions

35
.gitignore vendored Normal file
View File

@@ -0,0 +1,35 @@
# Template assets (exclude from repo)
/templates/
# Python cache / bytecode
__pycache__/
*.py[cod]
*.pyo
# Runtime/temp artifacts
*.log
*.tmp
*.swp
*.swo
# Generated runtime data
/app/output/
/app/data/generated_history.json
/app/data/review_logs/
/app/data/wechat_bridge_state.json
/app/data/wechat_bridge_meta.json
/app/data/marked_issues.json
/app/data/skipped_suppressions.json
/app/data/manual_rules.json
# Node / package temp
/app/node_modules/
# Env and secrets
.env
.env.*
*.env
# OS files
.DS_Store
Thumbs.db