# Mímir V2 - Git Ignore

# Environment files (contain sensitive configuration)
.env

# Private documents (not for repo)
original_conversation.txt
docs/original_conversation.txt
.env.local
.env.*.local

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

# Virtual environments
.venv/
venv/
ENV/
env/

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

# Testing
.tox/
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.hypothesis/

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

# Documentation
docs/_build/

# Docker
*.log

# OS
.DS_Store
Thumbs.db

# Project specific
postgres_data/
# Exclude lock files during development (Section 7.1 - lock for QA/Production only)
poetry.lock
uv.lock

# Data directory (user data, exports, etc.)
data/

# Communications (inter-team correspondence, not part of codebase)
comms/
