From ec391100bdf7da5aa0a0756b59af85b1e696f703 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Fri, 5 Jun 2026 21:33:53 -0400 Subject: [PATCH] chore: add config.json to .gitignore config.json is managed directly on each deploy host (contains the GIF API key and homeserver list) and is intentionally not committed. It was already untracked so git reset --hard left it alone, but git clean would have deleted it. Adding it to .gitignore makes the intent explicit and protects it from accidental git clean runs. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 13c74945b..46446326b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,8 @@ devAssets .DS_Store .ideapackage-lock.json + +# Runtime config — managed directly on each deploy host, never committed. +# Contains the GIF API key and homeserver list. git reset --hard won't touch +# it but git clean would delete it without this entry. +config.json