chore: update .gitignore for SQLite WAL, venv, and tool caches

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-12 02:10:55 -04:00
parent cb3ae403cf
commit b529edecc3

24
.gitignore vendored
View File

@@ -1,5 +1,25 @@
# macOS
.DS_Store
*.db
.env
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
.venv/
# Tools
.ruff_cache/
.pytest_cache/
.mypy_cache/
# SQLite runtime
*.db
*.db-shm
*.db-wal
# Environment / secrets
.env
.env.*