From 509e8440b352438f3d9357fa110a0ae98a5a4b67 Mon Sep 17 00:00:00 2001 From: James Wampler Date: Thu, 20 Aug 2026 16:58:24 -0700 Subject: [PATCH] chore: untrack .env files, rely on gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit caddy/.env and immich/.env were tracked despite .gitignore already excluding .env — gitignore only applies to untracked paths, so these kept diffing secrets into commits. Files stay on disk, just no longer in git. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01DPXhxhLUopnuDm3dWeHd5C --- caddy/.env | 1 - immich/.env | 6 ------ 2 files changed, 7 deletions(-) delete mode 100644 caddy/.env delete mode 100644 immich/.env diff --git a/caddy/.env b/caddy/.env deleted file mode 100644 index 2b9dbc9..0000000 --- a/caddy/.env +++ /dev/null @@ -1 +0,0 @@ -CLOUDFLARE_API_TOKEN=cfut_izUGIHU9xj7cM7rR0QWSD6QNuo4SOp3ZnUlSuC1xf9f35b0c diff --git a/immich/.env b/immich/.env deleted file mode 100644 index 7b62913..0000000 --- a/immich/.env +++ /dev/null @@ -1,6 +0,0 @@ -UPLOAD_LOCATION=/mnt/storage/media/photos -DB_USERNAME=postgres -DB_PASSWORD=postgres -DB_DATABASE_NAME=immich -DB_DATA_LOCATION=/mnt/storage/apps/immich/db -TZ=America/Los_Angeles