Add .gitignore to exclude sensitive and large files

This commit is contained in:
Outis
2026-06-01 08:46:02 -04:00
committed by GitHub
parent 7cd229f867
commit b23df57f8f
+33
View File
@@ -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