commit 9eec163a867277580f71171c3512e2f09f68f7f3 Author: Michael Czechowski Date: Tue Dec 30 11:30:11 2025 +0100 initial project setup with gitignore ignores build outputs, node_modules, nix results, and legacy folders 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