77 lines
1.5 KiB
Plaintext
77 lines
1.5 KiB
Plaintext
# ===========================================
|
|
# Python
|
|
# ===========================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# ===========================================
|
|
# Environment & Secrets
|
|
# ===========================================
|
|
.env
|
|
.env.local
|
|
*.local
|
|
|
|
# ===========================================
|
|
# IDE & Editors
|
|
# ===========================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# ===========================================
|
|
# Docker (runtime artifacts)
|
|
# ===========================================
|
|
*.log
|
|
|
|
# ===========================================
|
|
# Chainlit
|
|
# ===========================================
|
|
# Keep .chainlit/config.toml and .chainlit/assets/ in repo for theme customization
|
|
# But ignore runtime files
|
|
.chainlit/*.db
|
|
.chainlit/*.log
|
|
.files/
|
|
|
|
# ===========================================
|
|
# OS Files
|
|
# ===========================================
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# ===========================================
|
|
# Test & Coverage
|
|
# ===========================================
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# ===========================================
|
|
# Temporary Planning Files (not needed in repo)
|
|
# ===========================================
|
|
task.md
|
|
todo.md
|
|
definitive_plan.md
|
|
implementation_plan.md
|
|
README_V2.md
|
|
CrewAI_*.txt
|
|
|
|
# ===========================================
|
|
# Qdrant Data (persisted in Docker volume)
|
|
# ===========================================
|
|
qdrant_storage/
|