From 3d9690e93902c5b17bf4613a6ebbe7e1f399addc Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Wed, 25 Mar 2026 19:51:34 +0900 Subject: [PATCH] Added gitignore --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a300db --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Environment files — never commit real tokens +.env +*.env +!.env.example + +# Go build output +bin/ +dist/ +*.exe + +# Go test cache and coverage +*.test +*.out +coverage.html + +# Go workspace sum is committed, but local tool caches are not +.gomodcache/ + +# Editor / IDE +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store + +# Claude Code local settings (machine-specific, not shared) +.claude/settings.local.json + +# buf local cache +.buf/ + +# Docker build context artifacts +*.tar \ No newline at end of file