# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
*.egg
dist/
build/
*.whl
.venv/
venv/
env/
.uv/

# pytest
.pytest_cache/
.coverage
htmlcov/
coverage.xml

# mypy / ty
.mypy_cache/
.ty_cache/

# =============================================================================
# IDE
# =============================================================================
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# =============================================================================
# Node (prettier pre-commit hook)
# =============================================================================
node_modules/
nul

# =============================================================================
# Docker
# =============================================================================
docker-compose.override.yml

# =============================================================================
# Agent-specific
# =============================================================================
.claude/settings.local.json
.tasks/
CLAUDE.local.md

# =============================================================================
# Project-specific
# =============================================================================
# Memgraph data persistence
data/memgraph/

# TEI model cache
data/tei/

# Local config overrides
atlas.local.toml

# Environment files (secrets) — .env.dist is tracked
.env
.env.*
!.env.dist
