# Environment and local secrets
.env
.env.*
!.env.example
!**/.env.example

# Python bytecode, caches, and virtual environments
__pycache__/
*.py[cod]
*$py.class
*.so
.venv/
.venv-sdk/
venv/
env/
ENV/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.pyright/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
*.egg-info/
build/
dist/

# Node dependencies, caches, and build output
node_modules/
.npm/
.pnpm-store/
.vite/
.next/
.next.stale-*/
out/
coverage/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Local runtime data
*.db
*.sqlite
*.sqlite3

# Editor and operating-system files
.DS_Store
.idea/
.vscode/
*.swp
*.tmp
