64 lines
616 B
Plaintext
64 lines
616 B
Plaintext
# DiaryML Docker Ignore
|
|
# Excludes unnecessary files from Docker build context
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info
|
|
dist
|
|
build
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
venv*/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data (should be mounted as volumes, not copied)
|
|
diary.db
|
|
diary.db-wal
|
|
diary.db-shm
|
|
chroma_db/
|
|
uploads/
|
|
models/*.gguf
|
|
models/*.bin
|
|
model_config.json
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Documentation
|
|
*.md
|
|
LICENSE
|
|
|
|
# Backups
|
|
backup_before_restore/
|
|
*.backup
|
|
*.zip
|