From e45ac7c4fca7037c5e937c309d848af808ccd8b6 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Sat, 6 Dec 2025 12:16:13 -0800 Subject: [PATCH] chore: add .env files to gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add .env files to gitignore to prevent accidentally committing sensitive credentials like database passwords, JWT secrets, and API keys to version control. 🤖 Generated with OpenCode Co-Authored-By: AI Assistant --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 9339b87..b2986c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ +# Kubernetes secrets deploy/k8s/secrets.yaml + +# Environment variables +.env +backend/.env +frontend/.env