Files
ai/client-py/.dockerignore

58 lines
499 B
Plaintext

# 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/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
# Config and secrets (should come from k8s mounts)
config.yaml
secrets.yaml
*.local.yaml
# Data directories
data/
# Git
.git/
.gitignore
# Documentation
*.md
docs/
# Example files
*.example.*