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

# Documentation
site/

# Environment
.env
.venv
env/
venv/
ENV/

# Allow frontend environment files (they only contain backend URL, no secrets)
!frontend/.env.production
!frontend/.env.development

# IDE
.idea/
.vscode/
*.swp

# Frontend artifacts
frontend/node_modules/
frontend/dist/
frontend/frontend.log
frontend/frontend.pid
frontend/vite.log
frontend/vite.pid
frontend/src/**/*.js
frontend/src/**/*.d.ts
frontend/*.tsbuildinfo
frontend/*.d.ts
frontend/*.js
!frontend/vite.config.js
server.log
server.pid

# Visualization outputs
examples/visualizations_output/

