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:
parent
96804e560b
commit
424fa3514f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue