# Git
.git
.gitignore

# Docker
Dockerfile*
docker-compose*
.dockerignore

# Environment files
.env
.env.*
!env.example

# 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
.ven
env/
ENV/

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

# OS
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Output directories (will be mounted as volumes)
output/
trajectories/

# Test data
data/raw_test_repo/
data/raw_test_repo_simple/

# Documentation build
docs/_build/
docs/.doctrees/

# Cache
.cache/
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/

# Temporary files
*.tmp
*.temp
.tmp/
.temp/
