# Git
.git
.gitignore

# 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

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

# IDE
.idea/
.vscode/
*.swp
*.swo

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
.hypothesis/

# Documentation
docs/_build/

# Node.js (frontend)
studio/frontend/node_modules/
studio/frontend/.vite/

# Local development
*.local
.DS_Store

# VSCode Extension
vscode-extension/
*.vsix

# FlowMason data
.flowmason/
*.db

# Logs
*.log
logs/

# Temporary files
tmp/
temp/
*.tmp

# CI/CD
.github/
.gitlab-ci.yml
Jenkinsfile

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

# Package files (we build from source)
*.whl
*.tar.gz
