# Version control
.git
.gitignore
.gitattributes

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.conda/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# JupyterLab
.jupyter/
.ipynb_checkpoints/

# Testing
.coverage
.pytest_cache/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/
htmlcov/
.cache/
.mypy_cache/
.dmypy.json
dmypy.json

# Documentation
docs/_build/
.readthedocs.yml

# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
environment.env
*.env

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Docker files (avoid recursive copying)
Dockerfile*
.dockerignore
docker-compose*.yml
.docker/

# Build artifacts
lib/
*.tgz
*.tar.gz

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Temporary files
*.tmp
*.temp
.tmp/
.temp/

# Development scripts
scripts/
start_jupyter_dev.sh

# UI test artifacts
ui-tests/test-results/
ui-tests/playwright-report/

# TypeScript build info
*.tsbuildinfo

# ESLint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory used by tools like istanbul
coverage/
*.lcov

# Dependency directories
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# Plan and documentation files that aren't needed in container
NEW_FEATURE_PLAN.md
CHANGELOG.md
docs/ 