supra-nexus-o2 / .gitignore
Jan Biermeyer
image fixes
c889d26
raw
history blame contribute delete
732 Bytes
# Image assets (excluded for deployment, except logo files)
*.png
!assets/*.png
*.ico
!assets/*.ico
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual environments
venv/
env/
ENV/
.venv
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Thumbs.db
# ChromaDB / Vector DB
chroma_index/
*.db
*.sqlite
*.sqlite3
# Logs
*.log
logs/
# Model files (if large, load from HF Hub instead)
models/
*.safetensors
*.bin
*.pt
*.pth
checkpoints/
# Cache
.cache/
*.cache
.huggingface/
# Environment variables
.env
.env.local
# Temporary files
*.tmp
*.temp
tmp/
temp/
# Jupyter
.ipynb_checkpoints/
*.ipynb
# Testing
.pytest_cache/
.coverage
htmlcov/