From 25f86d94ccff314fc0af7d0ab3ab918fb221c2e1 Mon Sep 17 00:00:00 2001 From: -Puter <22245429+puterhimself@users.noreply.github.com> Date: Wed, 29 Jul 2026 19:32:05 +0530 Subject: [PATCH] chore: broaden .env ignore patterns Add .env.* to .gitignore so per-environment secrets like .env.staging and .env.production are never tracked, alongside the existing .env and .env*.local rules. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2a1c54f..56abb80 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ coverage .cache tmp temp +.env.*