From a0a439b6585c766e27939078a0fd7f0bbd249dae Mon Sep 17 00:00:00 2001 From: Sam Geyskens Date: Tue, 23 Dec 2025 10:07:45 +0100 Subject: [PATCH] chore: add .gitignore (exclude binaries, logs, local config) --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..50bd505 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# Binaries and build outputs +/bin/ +/*.exe +*.exe +*.out +*.test + +# Project-specific binary +safelineApi.exe + +# Go build caches and tools +# (keep go.mod and go.sum committed) +Godeps/ + +# Dependency directories +vendor/ + +# Configuration (local secrets) +config.json +.env +.env.local + +# Editor directories and files +.vscode/ +.idea/ +*.iml + +# OS files +.DS_Store +Thumbs.db + +# Logs and temp +*.log +tmp/ +temp/ + +# Misc +*.swp +*.swo