From 4e350774e5e4cfe280ac2527b8e47f84ac45a842 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 5 Dec 2025 09:57:26 +0100 Subject: [PATCH] Update .gitignore to include additional entries for build artifacts, Node.js dependencies, environment variables, IDE configurations, and OS-specific files, enhancing project cleanliness and preventing unnecessary files from being tracked. --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.gitignore b/.gitignore index c8558c3..28c7082 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,32 @@ .git/* build/* logs/*.log + +# Build-Artefakte (werden auf dem Server neu gebaut) +client/dist/ +dist/ +docroot/dist/ + +# Node.js +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.npm +.npmrc + +# Umgebungsvariablen +.env +.env.local +.env.*.local + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db