From 155cae80554449753f1f2baf319c33fd6227e638 Mon Sep 17 00:00:00 2001 From: Phil Skentelbery Date: Wed, 19 Nov 2025 12:31:56 -0700 Subject: [PATCH] chore: remove VERSION from .env.example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit VERSION is now automatically sourced from the package __version__ variable in config.py, so it should not be set in environment variables. This prevents version inconsistencies and ensures the displayed version always matches the code version. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .env.example | 3 --- 1 file changed, 3 deletions(-) diff --git a/.env.example b/.env.example index 496fbea..f97cdbf 100644 --- a/.env.example +++ b/.env.example @@ -78,9 +78,6 @@ FEED_CACHE_SECONDS=300 # CONTAINER CONFIGURATION # ============================================================================= -# Application version (for health check endpoint) -VERSION=0.6.0 - # Environment: development or production ENVIRONMENT=production