From aa1d22cec76b641b0a7c076fb11aea9a4d8de182 Mon Sep 17 00:00:00 2001 From: Gulum Date: Sun, 7 Jun 2026 21:58:10 +0200 Subject: [PATCH] FEAT-8d: add node_modules/ to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Never commit node_modules — always installed locally via npm install. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 816fcb1..537608d 100644 --- a/.gitignore +++ b/.gitignore @@ -137,3 +137,6 @@ GerbilManagerWebAPI/photo-storage/ # AR-3: Data Protection key ring (dev-only ephemeral keys) — never commit GerbilManagerWebAPI/.data-protection-keys/ + +# node_modules — never commit, installed locally per npm install +node_modules/