From 9eec163a867277580f71171c3512e2f09f68f7f3 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Tue, 30 Dec 2025 11:30:11 +0100 Subject: [PATCH] initial project setup with gitignore ignores build outputs, node_modules, nix results, and legacy folders --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d446a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Build outputs +build/ +*.pdf +*.html +.dev-index/ + +# Dependencies +node_modules/ + +# Editor +.vscode/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Nix +result +result-* +.direnv/ + +# Legacy project folders (to be removed after migration) +hdm-dateiformate-slides/ +hdm-internettechnik-slides/ + +# Temporary files +*.tmp +*.bak