52 lines
565 B
Plaintext
52 lines
565 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyc
|
|
*.pyd
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Environment / secrets — NEVER commit these
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Google OAuth credentials and tokens — contain secrets
|
|
credentials.json
|
|
token_*.pickle
|
|
|
|
# State / cache files
|
|
last_check.json
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.bak2
|
|
|
|
# Logs and output
|
|
*.log
|
|
*.txt
|
|
!requirements.txt
|
|
|
|
# Build / dist
|
|
build/
|
|
dist/
|
|
output/
|
|
|
|
# Type checking / linting caches
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
|
|
# OS artifacts
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|