2516e3eeef
Adds the inverse of the archive command: `gnommo load -p <project>` inspects the configured external drive and rsyncs the project folder onto the local drive. Supports --dry-run. Also expands .gitignore to cover additional media file types and project directories. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
42 lines
366 B
Plaintext
42 lines
366 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
*.egg-info/
|
|
*.pdf
|
|
*.png
|
|
*.key
|
|
*.bak
|
|
shared_assets/*
|
|
Video*/*
|
|
Illustrations
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
*/intermediate/*
|
|
|
|
# Output
|
|
**/out/
|
|
*.mp4
|
|
*.mov
|
|
*.mp3
|
|
*.aifc
|
|
*.wav
|
|
|
|
|
|
# Temp
|
|
*.tmp
|
|
.cache/
|
|
|
|
# Secrets
|
|
.env
|
|
.env.*
|
|
|
|
# Sync state (local only, per-environment)
|
|
.gnommo_sync.json
|
|
.gnommo_sync.prod.json
|