From f894b5b1d009090033b96423058e689054eee46f Mon Sep 17 00:00:00 2001 From: Ira Abramov Date: Mon, 20 Apr 2026 12:11:35 +0300 Subject: [PATCH] chore: ignore .env* variants in addition to .env Catches .env.local, .env.test, .env.production, and other variant files that should never be committed alongside the base .env. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1035745..8c02e07 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ groups/global/* # Secrets *.keys.json .env +.env* # Temp files .tmp-*