106 lines
962 B
Plaintext
106 lines
962 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 Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
.venv
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE - VSCode
|
|
.vscode/
|
|
*.code-workspace
|
|
.history
|
|
|
|
# IDE - PyCharm
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
.idea_modules/
|
|
|
|
# IDE - Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
*.ipynb
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# Local development
|
|
*.db
|
|
*.sqlite3
|
|
instance/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
temp/
|
|
uploads/
|
|
results/
|
|
*.pid
|
|
*.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
site/
|
|
|
|
# Package specific
|
|
node_modules/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Vector database files
|
|
pinecone_index/
|
|
weaviate_data/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak |