From 2fcbcf5b54b75ae18b88dbb0262eb5bf116d39a5 Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Sat, 28 Feb 2026 20:00:15 -0500 Subject: [PATCH] Update .gitignore to be comprehensive Adds OS files, editor artifacts, Node modules, secrets, Go build artifacts, and frontend build output to the root gitignore. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b10a6a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# OS +.DS_Store +Thumbs.db + +# Editors +*.swp +*.swo +*~ +*.bak +.idea/ +.vscode/ +*.sublime-* + +# Node +node_modules/ + +# Environment / secrets +.env +.env.* +*.pem +*.key + +# Go build artifacts +backend-go/bin/ +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.test +*.out +vendor/ +tmp/ + +# Frontend build output +frontend/dist/ +frontend/build/ +frontend/.vite/ + +# Prompts directory (local tooling, not part of the project) +Prompts/ + +# Logs +*.log