From fd283fd9f263c708a230cc229e2e7730fc04c533 Mon Sep 17 00:00:00 2001 From: olekhondera Date: Sun, 22 Feb 2026 23:47:06 +0200 Subject: [PATCH] fix: expand .gitignore to cover all .env.* variants Replaced narrow .env.local / .env.*.local rules with .env.* to prevent accidental commit of .env.production, .env.development, .env.staging, etc. Explicitly allowlisted .env.example so it remains tracked. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7021151..888363b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,8 +19,8 @@ logs/ # Environment files .env -.env.local -.env.*.local +.env.* +!.env.example # Node / JavaScript node_modules/