From 3db298ec3eca0ed94cb7912f660df7dd1f4582e0 Mon Sep 17 00:00:00 2001 From: plutorocks <> Date: Thu, 26 Feb 2026 21:30:32 +0000 Subject: initial commit --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1aba02 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# ===== Go build artifacts ===== +bridge-server +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.test +*.out + +# Go workspace file (optional; commit only if you intentionally use it) +go.work + +# ===== Dependency / module cache (never commit) ===== +vendor/ + +# ===== Environment / secrets ===== +.env +.env.* +tokens.json +tokens.local.json + +# ===== Logs ===== +*.log +logs/ + +# ===== OS junk ===== +.DS_Store +Thumbs.db + +# ===== IDEs ===== +.idea/ +.vscode/ +*.swp +*.swo + +# ===== Coverage ===== +coverage.out +coverage.html \ No newline at end of file -- cgit v1.2.3