From b55dc3e16485d9feafe45f7e5d185736e1285141 Mon Sep 17 00:00:00 2001 From: Luke Hinds Date: Thu, 13 Apr 2023 12:11:41 +0100 Subject: [PATCH] General gitignore Signed-off-by: Luke Hinds --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..d66fe356ff --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Compiled Go binary files +*.exe +*.test +*.prof + +# Generated files +/bin/ +/pkg/ +/vendor/ + +# IDE specific files +.vscode/ +.idea/ + +# Logs and Temp files +*.log +*.log.* +*.tmp + +# Cache and local data +*.cache +*.local + +# Credentials and secrets +.env +.secrets + +# OS generated files +.DS_Store +Thumbs.db + +# Secrets +config.yaml +*.pem +*.key \ No newline at end of file