merge azure-deploy #308

Merged
RecentRunner merged 2 commits from azure-deploy into main 2026-04-15 12:25:46 -06:00
2 changed files with 4 additions and 4 deletions

View File

@@ -16,9 +16,9 @@ val localProperties = Properties().apply {
fun quoted(value: String): String = "\"$value\"" fun quoted(value: String): String = "\"$value\""
val emulatorBackendUrl = val emulatorBackendUrl =
(localProperties.getProperty("petstore.backend.emulatorUrl") ?: "http://10.0.2.2:8080/").trim() (localProperties.getProperty("petstore.backend.emulatorUrl") ?: "https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io/").trim()
val deviceBackendUrl = val deviceBackendUrl =
(localProperties.getProperty("petstore.backend.deviceUrl") ?: "http://10.0.0.200:8080/").trim() (localProperties.getProperty("petstore.backend.deviceUrl") ?: "https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io/").trim()
android { android {
namespace = "com.example.petstoremobile" namespace = "com.example.petstoremobile"

View File

@@ -1,3 +1,3 @@
# Backend URL — swap comments to switch between local and remote # Backend URL — swap comments to switch between local and remote
api.baseUrl=http://localhost:8080 #api.baseUrl=http://localhost:8080
#api.baseUrl=https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io api.baseUrl=https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io