From 424fa3514f67d475340adf36ebe5749861b5683d Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 9 Dec 2025 07:30:16 -0800 Subject: [PATCH] fix(admin-service): add BASE_URL for APK download URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set BASE_URL to public API gateway address so mobile app can download APK files from correct URL instead of localhost. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/admin-service/.env.example | 1 + backend/services/admin-service/.env.production | 1 + 2 files changed, 2 insertions(+) diff --git a/backend/services/admin-service/.env.example b/backend/services/admin-service/.env.example index b0885d28..7b78effc 100644 --- a/backend/services/admin-service/.env.example +++ b/backend/services/admin-service/.env.example @@ -6,6 +6,7 @@ NODE_ENV=production APP_PORT=3010 API_PREFIX=api/v1 +BASE_URL=https://rwaapi.szaiai.com # Database DATABASE_URL=postgresql://rwa_user:rwa_secure_password@postgres:5432/rwa_admin?schema=public diff --git a/backend/services/admin-service/.env.production b/backend/services/admin-service/.env.production index 98e48fb6..4f1189a0 100644 --- a/backend/services/admin-service/.env.production +++ b/backend/services/admin-service/.env.production @@ -8,6 +8,7 @@ NODE_ENV=production APP_PORT=3010 API_PREFIX=api/v1 +BASE_URL=https://rwaapi.szaiai.com # Database DATABASE_URL="postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:5432/${DB_NAME}?schema=public"