# Git
.git
.gitignore

# Python
**/__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv
ENV
env
.eggs
*.egg-info
*.egg

# Testing/Dev
**/.pytest_cache
.coverage
htmlcov
.tox
**/.mypy_cache
**/.ruff_cache

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

# Output/Logs
output/
*.log

# Apify (not needed for Fly deployment)
apify_actors/

# Docs/Tests/Dev (not needed at runtime)
tests/
docs/
*.md
!README.md
example_ref/
scripts/
dist/
skills/
feedback*.md

# Environment
.env
.env.*

# Node.js (MCP App build tools - only need built HTML)
**/node_modules
mcp_server/mcp-app/dist
mcp_server/mcp-app/src
mcp_server/mcp-app/*.json
mcp_server/mcp-app/*.ts
mcp_server/mcp-app/*.js
mcp_server/mcp-app/*.html

# Misc
.DS_Store
Thumbs.db
