# =============================================================================
# Beddel Python - .gitignore
# =============================================================================

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

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.python-version

# -----------------------------------------------------------------------------
# Testing & Coverage
# -----------------------------------------------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.py,cover
.hypothesis/

# -----------------------------------------------------------------------------
# Type Checking & Linting
# -----------------------------------------------------------------------------
.mypy_cache/
.dmypy.json
dmypy.json
.ruff_cache/
.pytype/

# -----------------------------------------------------------------------------
# IDE & Editors
# -----------------------------------------------------------------------------
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
*.sublime-project
*.sublime-workspace

# -----------------------------------------------------------------------------
# OS Generated
# -----------------------------------------------------------------------------
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# -----------------------------------------------------------------------------
# Project-Specific: AI/Agent Folders (ignored)
# -----------------------------------------------------------------------------
.ai/
_bmad/
_bmad-output
.gemini/
agents/
mailbox/
src/beddel-gui

# -----------------------------------------------------------------------------
# Environment & Secrets
# -----------------------------------------------------------------------------
.env
.env.*
.envrc
!.env.example
*.pem
*.key
secrets/
credentials/

# -----------------------------------------------------------------------------
# Logs & Temp Files
# -----------------------------------------------------------------------------
*.log
logs/
tmp/
temp/
*.tmp
*.temp
*.bak

# -----------------------------------------------------------------------------
# Build & Distribution
# -----------------------------------------------------------------------------
*.manifest
*.spec

# Jupyter Notebooks
.ipynb_checkpoints/

# Celery
celerybeat-schedule
celerybeat.pid

# SageMath
*.sage.py

# Spyder
.spyderproject
.spyproject

# Rope
.ropeproject

# mkdocs
/site

# -----------------------------------------------------------------------------
# OpenTelemetry & Observability
# -----------------------------------------------------------------------------
traces/
spans/
*.otlp

# -----------------------------------------------------------------------------
# LiteLLM Cache
# -----------------------------------------------------------------------------
.litellm/
litellm_cache/
.kiroignore
report_session.md
docs/architecture/bmad-workflow-automation.md

gate-metrics/
pytest_output.txt
test_output.txt
src/beddel-dashboard/bun.lock

# Negate Python lib/ rule for dashboard source
!src/beddel-dashboard/src/lib/
