- Removed duplicate serverUrl getter at line 310 - Fixed .gitignore to only ignore Python lib/ not Flutter lib/ - Build should now work
68 lines
744 B
Plaintext
68 lines
744 B
Plaintext
# DiaryML .gitignore
|
|
|
|
# Private data
|
|
diary.db
|
|
diary.db-wal
|
|
diary.db-shm
|
|
chroma_db/
|
|
uploads/
|
|
model_config.json
|
|
|
|
# Model files (too large for git)
|
|
models/*.gguf
|
|
models/*.bin
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# Ignore Python lib directories but not Flutter's lib/
|
|
/lib/
|
|
/lib64/
|
|
backend/lib/
|
|
backend/lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
# Python build/ but keep Flutter build/ unignored separately below
|
|
/build/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
venv*/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Flutter SDK (users should install separately)
|
|
mobile_app/flutter/
|