From 76a9de27c25387619739ad3cf5d0f8ab08746c04 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sat, 18 Apr 2026 00:55:00 -0400 Subject: [PATCH] chore(staging): wire LEADERBOARD_INCLUDE_TEST_DEFAULT into compose MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v3.3.5 router reads config.LEADERBOARD_INCLUDE_TEST_DEFAULT but the staging compose file was never passing the env through to the container. This change was applied manually on the staging host before but never made it back into the repo — fixing that so CI deploys pick it up. Value on staging is sourced from .env (already set to true). Production leaves it unset, so the default of false applies. Co-Authored-By: Claude Opus 4.7 (1M context) --- docker-compose.staging.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index f83eacb..7e34f63 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -35,6 +35,7 @@ services: - BOOTSTRAP_ADMIN_USERNAME=${BOOTSTRAP_ADMIN_USERNAME:-} - BOOTSTRAP_ADMIN_PASSWORD=${BOOTSTRAP_ADMIN_PASSWORD:-} - MATCHMAKING_ENABLED=true + - LEADERBOARD_INCLUDE_TEST_DEFAULT=${LEADERBOARD_INCLUDE_TEST_DEFAULT:-false} depends_on: postgres: condition: service_healthy