From 10ae8dc617188a3632fa025ef6e1a3dead4e527f Mon Sep 17 00:00:00 2001 From: Nathan Oyler Date: Thu, 7 May 2026 07:54:14 -0700 Subject: [PATCH] chore: add build/ and .envrc to .gitignore Prevent accidental commit of build artifacts (may contain debug info) and .envrc files (may accumulate env vars with secrets over time). --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 77d22b4..b40726e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Binaries /bin/ +/build/ /openstack-mcp-server # Go @@ -17,3 +18,4 @@ vendor/ config.yaml clouds.yaml secure.yaml +.envrc