From b79fb48425e8b65f63cde76af4025ae9a73b0a70 Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Tue, 22 Jul 2025 19:53:53 +0200 Subject: [PATCH] update .gitignore to include additional patterns for node modules, build outputs, logs, and IDE settings --- .gitignore | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 11078bc..8b89b5c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,38 @@ index.html # Ignore frontend dev file +# Ignore node modules (if using Node.js) +client/node_modules/ +login-auth_backend/node_modules/ +panel-mgmt_backend/node_modules/ +user-mgmt_backend/node_modules/ + +# Ignore build output directories +dist/ +build/ + +# Ignore log files +*.log + +# Ignore OS-specific files +.DS_Store +Thumbs.db + +# Ignore notes and documentation todo.txt -# Ignore todo list file \ No newline at end of file +docs/ +notes/ + +# Ignore IDE/editor settings +.vscode/ +.idea/ + +# Ignore frontend dev files (uncompiled sources, temp files) +*.tmp +*.bak + +# Ignore compiled files (if any) +*.out +*.exe + +# Add more patterns as needed for your stack \ No newline at end of file