From 33bd23f7810dfdbd9764f880f42d05e8d36947c5 Mon Sep 17 00:00:00 2001 From: RookieCuzz <85008507+RookieCuzz@users.noreply.github.com> Date: Wed, 8 Oct 2025 10:52:08 +0800 Subject: [PATCH] add: gitignore --- .gitignore | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d4f2df1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +# Go build artifacts +bin/ +build/ +dist/ +out/ + +# Executables and shared libs +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test and coverage outputs +*.test +coverage.out +*.coverprofile +cover/ + +# Logs +*.log +logs/ + +# Env files +.env +.env.* +.envrc + +# Caches & temp +.cache/ +tmp/ + +# Profiling & traces +*.prof +*.pprof +trace.out + +# PID and backup files +*.pid +*.bak +*.orig + +# Editor swap files +*.swp +*.swo +~* + +# IDE settings +.vscode/ +.idea/ +*.iml + +# OS files +.DS_Store +Thumbs.db + +# Archives +*.zip +*.tar +*.tar.gz +*.rar +*.7z + +# Keys & certs (avoid committing secrets) +*.pem +*.key +*.crt +*.cert \ No newline at end of file