From abad762077ffe7717286bc9c6c0395b8c8c1e082 Mon Sep 17 00:00:00 2001 From: Jan Scheffler Date: Wed, 8 Jul 2026 16:01:52 +0200 Subject: [PATCH] chore: gitignore .env (and .mypy_cache) Local secrets must never be committable. `.env` (used to hold an APOLLO_API_KEY for live testing) and `.env.*` are now ignored, plus .mypy_cache/ for completeness. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e181a0a..6923a4b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,8 @@ dist/ .coverage .pytest_cache/ .ruff_cache/ +.mypy_cache/ + +# Local secrets — never commit +.env +.env.*