From ed7b210f78d430ab57bcb378cf3548cf341e5ebb Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sat, 22 Nov 2025 16:53:37 -0800 Subject: [PATCH] Update .gitignore to exclude environment files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .env files to .gitignore (contains secrets) - Fix repository remote configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f9ba7f8..9a84a05 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,9 @@ dist .DS_Store server/public vite.config.ts.* -*.tar.gz \ No newline at end of file +*.tar.gz + +# Environment variables (contains secrets) +.env +.env.local +.env.*.local \ No newline at end of file