add gitignore
This commit is contained in:
parent
acc3d50f28
commit
9847b23210
|
|
@ -1,9 +1,37 @@
|
|||
.venv/
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
*.egg
|
||||
|
||||
# Virtual environment
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
|
||||
# Database
|
||||
data/
|
||||
*.db
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Project docs (local only)
|
||||
CLAUDE.md
|
||||
|
||||
TZ.md
|
||||
|
||||
# Claude Code
|
||||
.claude/
|
||||
|
|
|
|||
Loading…
Reference in New Issue