118 lines
1.3 KiB
Plaintext
118 lines
1.3 KiB
Plaintext
# Exclude Python virtualenvs and environment files
|
||
.venv/
|
||
venv/
|
||
env/
|
||
ENV/
|
||
*.env
|
||
|
||
# Byte-compiled / optimized / DLL files
|
||
__pycache__/
|
||
*.py[cod]
|
||
*.so
|
||
|
||
# Git and editor
|
||
.git
|
||
.gitignore
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
|
||
# Chroma and local DB files (large)
|
||
chroma_db_data/
|
||
chroma.sqlite3
|
||
|
||
# Local docker exports, archives, and logs
|
||
docker-images-export/
|
||
*.tar
|
||
*.log
|
||
logs/
|
||
|
||
# Large third‑party or downloaded data
|
||
https:/
|
||
|
||
# Build artifacts
|
||
build/
|
||
dist/
|
||
*.egg-info/
|
||
|
||
# Temporary files
|
||
tmp*
|
||
._*
|
||
|
||
# If you need to include something under an excluded dir, use a negative pattern
|
||
# For example, to include a single file under chroma_db_data: uncomment below and adjust path
|
||
# !chroma_db_data/keep_this_file.txt
|
||
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
.Python
|
||
*.egg-info/
|
||
dist/
|
||
build/
|
||
.eggs/
|
||
|
||
# Virtual environments
|
||
.venv/
|
||
venv/
|
||
ENV/
|
||
env/
|
||
|
||
# IDE
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# Git
|
||
.git/
|
||
.gitignore
|
||
|
||
# Docker
|
||
Dockerfile
|
||
.dockerignore
|
||
docker-compose.yml
|
||
|
||
# Documentation
|
||
*.md
|
||
!README.md
|
||
|
||
# Logs
|
||
*.log
|
||
logs/
|
||
|
||
# Database files (will be mounted as volumes)
|
||
chroma_db/
|
||
chroma_db_data/
|
||
|
||
# Environment files (will be provided via docker-compose)
|
||
.env
|
||
.env.local
|
||
*.local.json
|
||
|
||
# Test files
|
||
test_*.py
|
||
*_test.py
|
||
|
||
# Temporary files
|
||
*.tmp
|
||
*.bak
|
||
*.swp
|
||
tmp/
|
||
temp/
|
||
|
||
# OS
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# Scripts (not needed in container)
|
||
setup_*.sh
|
||
check_*.sh
|
||
run.sh
|
||
|
||
# Lock files
|
||
uv.lock
|
||
|