31 lines
368 B
Plaintext
31 lines
368 B
Plaintext
# Environment variables (CRITICAL: DO NOT COMMIT SECRETS)
|
|
.env
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Python caches and compiled files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Ruff / Linting
|
|
.ruff_cache/
|
|
|
|
# Build and distribution directories
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|