# -----------------------------------------------------------------------------
# Environments and Secrets
# -----------------------------------------------------------------------------
.env
.env.*
!.env.example
.venv
env/
venv/
ENV/

# -----------------------------------------------------------------------------
# Python / uv
# -----------------------------------------------------------------------------
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# -----------------------------------------------------------------------------
# Docker & Local Infrastructure Data
# -----------------------------------------------------------------------------
infrastructure/neo4j_data/
infrastructure/qdrant_data/
infrastructure/minio_data/
infrastructure/postgres_data/
infrastructure/redis_data/

# -----------------------------------------------------------------------------
# IDEs and Editors
# -----------------------------------------------------------------------------
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

# -----------------------------------------------------------------------------
# Unit test / coverage reports
# -----------------------------------------------------------------------------
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# -----------------------------------------------------------------------------
# Mypy / Type checking
# -----------------------------------------------------------------------------
.mypy_cache/
.pyre/
.typeguard/
