From 8cdc85ba67d11bb6ade77f94baf4e8c3f88320ba Mon Sep 17 00:00:00 2001 From: rabbitblood Date: Thu, 16 Apr 2026 09:19:24 -0700 Subject: [PATCH] chore: gitignore credentials for docs Adds standard credential gitignore (.env / *.pem / .secrets/ / .auth_token). Per-CEO directive 2026-04-16: every plugin and template repo should gitignore credentials so self-hosters can't accidentally commit real tokens to public repos. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 96b1886..1243781 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,17 @@ next-env.d.ts # IDE .vscode/ .idea/ + +# Credentials — added by chore/credentials-gitignore batch +.env.local +.env.*.local +.env.* +!.env.example +!.env.sample +*.key +*.crt +*.p12 +*.pfx +.secrets/ +.auth-token +.auth_token