fix: exclude AL model files from git and deployment
Adds exclusions for al-integration/models/ (28GB Mistral-7B) and venv directories. Changes: - Added al-integration/models/ to .gitignore - Added al-integration/venv/ to .gitignore - Added both to .rsyncignore for deployment exclusion Fixes deployment OOM issue caused by attempting to upload 28GB model files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
cb453d89e0
commit
e8c5dc7e2b
2 changed files with 9 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -75,6 +75,9 @@ hf-spaces/
|
|||
# Demo virtual environments
|
||||
demos/*/venv/
|
||||
|
||||
# AL integration models (huge LLM files)
|
||||
al-integration/models/
|
||||
al-integration/venv/
|
||||
|
||||
# Session planning and Discord docs
|
||||
docs/discord/
|
||||
|
|
|
|||
|
|
@ -48,6 +48,12 @@ docs/DOCUMENT_SECURITY_GOVERNANCE.md
|
|||
# Development Files
|
||||
# ============================================
|
||||
node_modules/
|
||||
|
||||
# ============================================
|
||||
# AL Integration - Large Model Files
|
||||
# ============================================
|
||||
al-integration/models/
|
||||
al-integration/venv/
|
||||
.git/
|
||||
.gitignore
|
||||
package-lock.json
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue