fix(admin-service): add BASE_URL for APK download URLs

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 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-09 07:30:16 -08:00
parent 96804e560b
commit 424fa3514f
2 changed files with 2 additions and 0 deletions

View File

@ -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

View File

@ -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"