From 61e25bd31a45179f79ef3c9d9f29acfbe0891037 Mon Sep 17 00:00:00 2001 From: Aron Date: Fri, 10 Oct 2025 12:31:14 +0200 Subject: [PATCH] add impressum --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e848e2a --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Zola static site +# Ignore build artifacts, cache, and OS/editor files + +.github/ + +# Zola cache +.cache/ + +# Sass cache +.sass-cache/ + +# Node modules (if any) +node_modules/ + +# Editor/OS files +.DS_Store +*.swp +*.swo +*.bak +*.tmp + +# Logs +*.log + +# Python virtualenvs (if any) +venv/ + +# VS Code settings +.vscode/ + +# Do NOT ignore public/ +!/public/ + +# Ignore processed images (if you want to keep originals only) +processed_images/ + +# Ignore old config backups +old_config.toml + +# Ignore build scripts output (if any) +*.out + +# Ignore Forgejo/GoatCounter analytics local files +analytics/ + +# Ignore any other temp files +*.temp