From bc84b6cbdb0e545955ba6cc6f19d89af36d21bb2 Mon Sep 17 00:00:00 2001 From: teernisse Date: Fri, 20 Feb 2026 14:29:26 -0500 Subject: [PATCH] chore: gitignore .liquid-mail.toml and remove from tracking The file contains a Honcho API key that should not be in version control. Added to .gitignore and untracked; the file remains on disk for local use. --- .gitignore | 1 + .liquid-mail.toml | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 .liquid-mail.toml diff --git a/.gitignore b/.gitignore index 0958099..e0ad3c6 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ yarn-error.log* # Local config files lore.config.json +.liquid-mail.toml # beads .bv/ diff --git a/.liquid-mail.toml b/.liquid-mail.toml deleted file mode 100644 index e0ea2b4..0000000 --- a/.liquid-mail.toml +++ /dev/null @@ -1,13 +0,0 @@ -# Liquid Mail config (TOML) -# -# Prefer env vars for secrets: -# LIQUID_MAIL_HONCHO_API_KEY -# LIQUID_MAIL_HONCHO_WORKSPACE_ID -# -[honcho] -api_key = "hch-v3-pmx23gk9k60xlqffpxpyjj8pywnxkpjkic9bdygx21iydvyxbeialioz5ehhcp1r" -# workspace_id is optional. -# If omitted, Liquid Mail defaults it to the repo name (git root folder name). -# Honcho uses get-or-create semantics for workspaces, so it will be created on first use. -# workspace_id = "my-repo" -base_url = "https://api.honcho.dev"