From 1678ac535b32a78865cfe99b7ac58235af96a69f Mon Sep 17 00:00:00 2001 From: Klagarge Date: Sun, 3 May 2026 22:47:43 +0200 Subject: [PATCH] chore(db): add local gitignore Signed-off-by: Klagarge --- db/.gitignore | 28 ++++++++++++++++++++++++++++ db/.gitkeep | 0 2 files changed, 28 insertions(+) create mode 100644 db/.gitignore delete mode 100644 db/.gitkeep diff --git a/db/.gitignore b/db/.gitignore new file mode 100644 index 0000000..1ee5af2 --- /dev/null +++ b/db/.gitignore @@ -0,0 +1,28 @@ +### Go template +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +mapping.json diff --git a/db/.gitkeep b/db/.gitkeep deleted file mode 100644 index e69de29..0000000