mirror of
https://github.com/open-webui/mcpo.git
synced 2026-07-01 21:04:00 -04:00
8384bf5b81
Co-authored-by: Taylor Wilsdon <tbarrettwilsdon@gmail.com>
72 lines
1.1 KiB
Plaintext
72 lines
1.1 KiB
Plaintext
########################
|
|
# Version-control
|
|
########################
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
########################
|
|
# Docker artefacts
|
|
########################
|
|
.dockerignore
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.docker/
|
|
|
|
########################
|
|
# Python byte-code / Caches
|
|
########################
|
|
**/__pycache__/
|
|
**/*.py[cod]
|
|
*.so # compiled C extensions
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.nox/
|
|
.tox/
|
|
|
|
########################
|
|
# Virtual-envs & deps
|
|
########################
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
*.dist-info/
|
|
build/
|
|
dist/
|
|
pip-wheel-metadata/
|
|
|
|
########################
|
|
# Testing & coverage
|
|
########################
|
|
.coverage
|
|
htmlcov/
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
########################
|
|
# Docs & generated reports
|
|
########################
|
|
docs/_build/
|
|
|
|
########################
|
|
# IDE / Editor artefacts
|
|
########################
|
|
.idea/
|
|
.vscode/
|
|
.ropeproject/
|
|
**/*.swp # Vim swap files
|
|
|
|
########################
|
|
# Ops / secrets (keep these out of images!)
|
|
########################
|
|
*.env
|
|
.env*
|
|
*.pem
|
|
*.key
|
|
config.json
|
|
########################
|
|
# OS junk
|
|
########################
|
|
.DS_Store
|
|
Thumbs.db |