From d82a7ae038fe39c3c0a62b5bf924196496c25731 Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Mon, 15 Jul 2024 16:03:51 +0200 Subject: [PATCH] update enviroment api base url --- Frontend/patient_manager/lib/env/env.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frontend/patient_manager/lib/env/env.dart b/Frontend/patient_manager/lib/env/env.dart index 6aa88e43..d3f77a7c 100644 --- a/Frontend/patient_manager/lib/env/env.dart +++ b/Frontend/patient_manager/lib/env/env.dart @@ -11,13 +11,13 @@ abstract class AppEnviroment { switch (env) { case Enviroment.dev: { - baseApiUrl = "http://localhost:81"; + baseApiUrl = "http://localhost:8080"; baseFileUrl = "http://localhost:9000"; break; } case Enviroment.prod: { - baseApiUrl = "http://MIH_API_Hub:81"; + baseApiUrl = "http://mzansi-innovation-hub.co.za:8080"; baseFileUrl = "http://MIH_Minio:9000"; break; }