From 12fc0522b2a5f7966b7ee6810c75c93498c13cf8 Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Sat, 1 Aug 2026 12:41:34 -0400 Subject: [PATCH] Add direnv setup: .envrc loads gitignored .env, template in .env.example Co-Authored-By: Claude Fable 5 --- .env.example | 11 +++++++++++ .envrc | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 .env.example create mode 100644 .envrc diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..5e21bca --- /dev/null +++ b/.env.example @@ -0,0 +1,11 @@ +# Copy to .env and fill in. .env is gitignored — never commit real values. + +# BGG XML API application token (register at https://boardgamegeek.com/applications) +BGG_API_TOKEN= + +# BGG website login for the upload stage (Playwright) +BGG_USERNAME= +BGG_PASSWORD= + +# Anthropic API key for the vision extract stage +ANTHROPIC_API_KEY= diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..7553c66 --- /dev/null +++ b/.envrc @@ -0,0 +1,3 @@ +# Loaded automatically by direnv when you cd into this directory. +# Secrets live in .env (gitignored) — see .env.example for the template. +dotenv_if_exists