From a3af10a8309622e5ffa99760fafc4d7bd7bfc65e Mon Sep 17 00:00:00 2001 From: claude Date: Sun, 2 Aug 2026 16:51:26 +0400 Subject: [PATCH] gitignore the root .env, it holds a live token (V-484) It was untracked but not ignored, so one git add -A would have committed MAVEN_AMBIENT_TOKEN. Same class as deploy/telegram.env, which is already ignored. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 1d4d860..b6b2424 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,6 @@ coverage.out /HANDOFF.md /models/stt /models/tts + +# root .env — MAVEN_AMBIENT_TOKEN and friends, same class as deploy/telegram.env +.env