Files
fhir-mcp-server/.dockerignore
2025-06-26 23:23:19 +05:30

46 lines
514 B
Plaintext

# Ignore Python cache and build artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
*.py[co]
# Ignore virtual environments
.venv/
venv/
ENV/
# Ignore distribution/build directories
build/
dist/
wheels/
*.egg-info/
# Ignore environment files
.env
*.env
# Ignore IDE/editor config
.vscode/
.idea/
# Ignore OS files
.DS_Store
Thumbs.db
# Ignore test and coverage outputs
.coverage
htmlcov/
.tox/
# Ignore git and docker files
.git
.gitignore
.dockerignore
# Ignore logs
*.log
# Ignore documentation builds
docs/_build/