From 4de34e4adbafaeec249ecae3fede4ba4eec4c03e Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 12 Feb 2024 12:31:26 +0100 Subject: [PATCH] Ignorefiles --- .containerignore | 4 ++++ .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .containerignore create mode 100644 .gitignore diff --git a/.containerignore b/.containerignore new file mode 100644 index 0000000..b5b7c6a --- /dev/null +++ b/.containerignore @@ -0,0 +1,4 @@ +**/target +**/node_modules +**/dist +**/.sqlite3 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd09b0b --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +bin +db.sqlite3 + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Go workspace file +go.work + +# Ignore dependency directories +node_modules +vendor/ + +# Ignore build artifacts +build/ +dist/ +*.log + +# Ignore IDE and editor-specific files +.vscode/ +.idea/ +.DS_Store + +# Ignore configuration files +.env +.env.local +*.conf + +# Ignore user-specific files +*.suo +*.user +