41 lines
645 B
Plaintext
41 lines
645 B
Plaintext
# 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
|
|
|
|
# WeChat webui runtime/session artifacts
|
|
/wechat-webui/.session.json
|
|
/wechat-webui/webui.log
|
|
/wechat-webui/__pycache__/
|