* docs: prepare Vendoo 1.41.2 git-ignore boundary hotfix * fix: track native source modules with root-anchored runtime ignores
97 lines
1.6 KiB
Plaintext
97 lines
1.6 KiB
Plaintext
# Secrets and local configuration
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.docker.example
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# SQLite runtime data
|
|
/db/*.db
|
|
/db/*.db-shm
|
|
/db/*.db-wal
|
|
/db/*.sqlite
|
|
/db/*.sqlite3
|
|
|
|
# User and runtime data
|
|
/uploads/*
|
|
!/uploads/.gitkeep
|
|
/backups/
|
|
/logs/
|
|
/tmp/
|
|
/temp/
|
|
/sessions/
|
|
/data/
|
|
/docker-data/
|
|
*.log
|
|
|
|
# OS and editor files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Local overrides
|
|
compose.override.yaml
|
|
docker-compose.override.yml
|
|
|
|
# Local AI runtimes and downloaded model data
|
|
/local-ai/comfyui/
|
|
/local-ai/downloads/
|
|
/local-ai/extract-temp/
|
|
/local-ai/fashn-vton/.venv/
|
|
/local-ai/fashn-vton/engine/
|
|
/local-ai/fashn-vton/weights/
|
|
/local-ai/fashn-vton/outputs/
|
|
/local-ai/fashn-vton/runtime/
|
|
/local-ai/fashn-vton/hf-cache/
|
|
/local-ai/fashn-vton/fashn-vton-*.zip
|
|
/local-ai/fashn-vton/python311/
|
|
/local-ai/fashn-vton/uv/
|
|
/local-ai/fashn-vton/uv-cache/
|
|
/local-ai/fashn-vton/downloads/
|
|
|
|
# Historical handover and feature-package archives (never source)
|
|
/Archiv/
|
|
/archive/
|
|
/archives/
|
|
|
|
# Local update, rollback and slice archives
|
|
/updates/
|
|
|
|
# Operations Center runtime
|
|
/operations/staging/
|
|
/operations/updates/
|
|
/operations/rollback/
|
|
/operations/apply-*/
|
|
/operations/pending-operation.json
|
|
/operations/last-operation.json
|
|
|
|
# Deployment assistant state
|
|
/.vendoo-install-mode
|
|
/runtime/
|
|
# Generated deployment and release output
|
|
/release-output/
|
|
*.release.zip
|
|
*.release.sha256.txt
|
|
/.vendoo-github-state.json
|
|
|
|
# First-run and local installer state
|
|
/operations/first-admin-code.txt
|
|
/config/local/
|
|
|
|
|
|
# Installed Vendoo module packages (runtime)
|
|
/modules/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|