From 7cc90c5403138391474b8ee4763582d789ffff15 Mon Sep 17 00:00:00 2001 From: Gal Date: Mon, 25 Dec 2023 12:14:55 +0100 Subject: [PATCH] Add gitignore --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd4b02e --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Ignore all directories named 'nextcloud' and 'db' within the /home/ac1dburn/services directory +/services/nextcloud/ +/services/db/ + +# Exclude any log files or other temporary files that you don't want to commit +*.log +*.tmp +*.swp + +# Exclude sensitive or environment-specific files +.env +config.ini +secrets.json + +# Exclude node_modules if it's present in any of your services +/node_modules/ + +# Exclude compiled binaries or files +*.exe +*.dll +*.so +*.dylib