Add .gitignore to exclude sensitive and large files
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
# ── Secrets ───────────────────────────────────────────────────────────────────
|
||||
**/secrets/
|
||||
**/.env
|
||||
**/*.key
|
||||
**/*.pem
|
||||
|
||||
# ── Model files — too large for git ───────────────────────────────────────────
|
||||
**/*.ckpt
|
||||
**/*.safetensors
|
||||
**/*.gguf
|
||||
**/*.bin
|
||||
**/*.pt
|
||||
**/*.pth
|
||||
|
||||
# ── Data directories — outputs, databases, caches ─────────────────────────────
|
||||
**/data/ollama/
|
||||
**/data/open-webui/
|
||||
**/data/invokeai/
|
||||
**/data/forge/
|
||||
**/data/searxng/
|
||||
**/data/authelia/
|
||||
|
||||
# ── Logs ──────────────────────────────────────────────────────────────────────
|
||||
**/*.log
|
||||
|
||||
# ── Python ────────────────────────────────────────────────────────────────────
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
||||
# ── OS ────────────────────────────────────────────────────────────────────────
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Reference in New Issue
Block a user