Point mobile app at nginx-fronted https://guidetest.vrubel.xyz/
Verified reachable end-to-end (health/nearby endpoints respond correctly through the reverse proxy) and set as the preferred API_BASE_URL for testing from a physical device on any network, ahead of the LAN-IP and emulator-loopback fallbacks. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
6e90956b3e
commit
0cc8d9b767
2 changed files with 16 additions and 7 deletions
|
|
@ -5,8 +5,10 @@ sdk.dir=/path/to/your/Android/Sdk
|
|||
# Test key provided for development; do not ship this as-is in a public repo.
|
||||
DGIS_API_KEY=b4df01a8-61db-4cb9-8286-7e069495987d
|
||||
|
||||
# Base URL of the guideCity backend API.
|
||||
# Emulator -> host loopback: http://10.0.2.2:8000/
|
||||
# Physical device on the same Wi-Fi/LAN -> your machine's LAN IP, e.g. http://192.168.1.50:8000/
|
||||
# (backend already binds 0.0.0.0:8000 via docker-compose, so it's reachable on the LAN IP with no extra config)
|
||||
API_BASE_URL=http://192.168.8.173:8000/
|
||||
# Base URL of the guideCity backend API. Options, in order of preference:
|
||||
# 1. Nginx-fronted HTTPS domain (works from anywhere, not just the LAN):
|
||||
API_BASE_URL=https://guidetest.vrubel.xyz/
|
||||
# 2. Emulator -> host loopback: http://10.0.2.2:8000/
|
||||
# 3. Physical device on the same Wi-Fi/LAN -> your machine's LAN IP, e.g. http://192.168.1.50:8000/
|
||||
# (backend already binds 0.0.0.0:8000 via docker-compose, so it's reachable on the LAN IP with
|
||||
# no extra config; cleartext HTTP is allowed in debug builds only, see app/src/debug/AndroidManifest.xml)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue