# =============================================================================
# MCPresso — .gitignore
# "Brew your MCP server in under 60 seconds"
# =============================================================================

# ---------------------------------------------------------------------------
# MCPresso runtime artifacts
# ---------------------------------------------------------------------------

# API keys — never commit!
.env
*.env
.env.local
.env.production

# MCPresso local registry (user-specific, contains generated code)
.mcpresso/
~/.mcpresso/

# Generated MCP servers (user-brewed output)
brewed_server.py
*_server_brewed.py
*_server_generated.py

# Generated client scripts
client_*.py

# Generated test suites
test_*_server.py

# Benchmark output reports
benchmark_results_*.json
benchmark_report_*.json

# Validation JSON reports
*_validation_report.json
report.json

# ---------------------------------------------------------------------------
# Python
# ---------------------------------------------------------------------------

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
*.pyd

# Distribution / build
dist/
build/
*.egg-info/
*.egg
MANIFEST
.eggs/
wheels/
*.whl
*.tar.gz
*.zip

# Virtual environments
.venv/
venv/
env/
ENV/
.virtualenv/
virtualenvs/
.conda/
conda-env/

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/
.pyre/

# Test & coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover
nosetests.xml
test-results/
test_results/
junit.xml

# Profiling
*.prof
*.lprof

# ---------------------------------------------------------------------------
# Jupyter Notebooks
# ---------------------------------------------------------------------------

.ipynb_checkpoints/
*.ipynb

# ---------------------------------------------------------------------------
# Sentence Transformers / HuggingFace model cache
# ---------------------------------------------------------------------------

# If someone accidentally downloads models into the repo dir
models/
.cache/huggingface/
sentence_transformers_cache/

# ---------------------------------------------------------------------------
# IDEs & Editors
# ---------------------------------------------------------------------------

# VS Code
.vscode/
*.code-workspace
.history/

# PyCharm / IntelliJ
.idea/
*.iml
*.iws
*.ipr
out/

# Vim / Neovim
*.swp
*.swo
*~
.netrwhist

# Emacs
*#
.#*
\#*\#

# Sublime Text
*.sublime-project
*.sublime-workspace

# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon?
._*
.Spotlight-V100
.Trashes

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN/
*.lnk

# Linux
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*

# ---------------------------------------------------------------------------
# Logs
# ---------------------------------------------------------------------------

*.log
*.log.*
logs/
log/
mcpresso.log
mcpresso_*.log

# ---------------------------------------------------------------------------
# Temporary / scratch files
# ---------------------------------------------------------------------------

*.tmp
*.temp
*.bak
*.orig
*.swp
scratch/
tmp/
temp/
sandbox/

# ---------------------------------------------------------------------------
# Secrets & credentials
# ---------------------------------------------------------------------------

*.pem
*.key
*.p12
*.pfx
*.crt
*.cer
secrets.json
credentials.json
service_account.json
.secrets/

# ---------------------------------------------------------------------------
# Docker (if ever containerised)
# ---------------------------------------------------------------------------

.dockerignore
docker-compose.override.yml

# ---------------------------------------------------------------------------
# Documentation build output
# ---------------------------------------------------------------------------

docs/_build/
docs/site/
site/
_site/

# ---------------------------------------------------------------------------
# Node (if any frontend tooling is added)
# ---------------------------------------------------------------------------

node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn/

# ---------------------------------------------------------------------------
# Keep these (force-track important examples)
# ---------------------------------------------------------------------------

# The sample servers shipped with the repo ARE tracked
!calc_server.py
!demo_server.py
!github_server.py
!brewed_server.py
