From c0a8917df3b0d8fc0f91b0042984142d8e1b2ea2 Mon Sep 17 00:00:00 2001 From: Outis Date: Mon, 1 Jun 2026 09:12:35 -0400 Subject: [PATCH] Create .gitignore --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0982a49 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# ── 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/ + +# ── Archives ────────────────────────────────────────────────────────────────── +**/archive/*.tar + +# ── Logs ────────────────────────────────────────────────────────────────────── +**/*.log + +# ── Python ──────────────────────────────────────────────────────────────────── +__pycache__/ +*.pyc +*.pyo + +# ── OS ──────────────────────────────────────────────────────────────────────── +.DS_Store +Thumbs.db