feat: initial import (exclude templates and runtime temp files)
This commit is contained in:
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal 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
|
||||
Reference in New Issue
Block a user