From 04c949aa293ec287d6059682e96adb1f74e67734 Mon Sep 17 00:00:00 2001 From: Andrew Bierman Date: Tue, 19 May 2026 23:48:29 -0600 Subject: [PATCH] chore: add .envrc so direnv loads .env.local on cd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit direnv reads .env.local on entry, which surfaces PACKRAT_NATIVEWIND_UI_GITHUB_TOKEN (and any other locals) into the shell before bun reads bunfig.toml — removing the manual `export ... && bun install` two-step for fresh checkouts. No secrets in this file; .env.local is already gitignored. Co-Authored-By: Claude Opus 4.7 (1M context) --- .envrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .envrc diff --git a/.envrc b/.envrc new file mode 100644 index 0000000000..ff1d7bbc1a --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +dotenv_if_exists .env.local