# Secrets and environment files
.env
.env.*
!.env.example
!.env.production.example

# Python
.venv/
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/

# Node / frontend
node_modules/
dist/
.vite/

# Logs and runtime data
*.log
logs/
runtime/

# Build and release artifacts
release/
*.zip
*.sha256.txt

# Local data and generated files
uploads/
exports/
tmp/
*.sqlite3

# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/
