Files
rag_chat/.dockerignore

82 lines
655 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyTorch
*.pth
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
# Docker
Dockerfile*
.dockerignore
# Tests
test_*.py
*_test.py
tests/
# Logs
*.log
logs/
# Database
*.db
*.sqlite
*.sqlite3
# Milvus data
milvus_user_data_openai/
milvus_lite.db
# Temporary files
tmp/
temp/
.tmp/
# Documentation
README.md
docs/