From 81673238f343f0a9db83847b177750526a460fff Mon Sep 17 00:00:00 2001
From: migudel <miguel.moras@estudiantes.uva.es>
Date: Sat, 23 Nov 2024 12:32:32 +0100
Subject: [PATCH] Ajuste en arquitectura y entorno de angular, refinamiento de
 servicio auth

---
 angular/RestClient/environments/environment.prod.ts | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 angular/RestClient/environments/environment.prod.ts

diff --git a/angular/RestClient/environments/environment.prod.ts b/angular/RestClient/environments/environment.prod.ts
new file mode 100644
index 0000000..e7abc07
--- /dev/null
+++ b/angular/RestClient/environments/environment.prod.ts
@@ -0,0 +1,9 @@
+const monolithUrl = 'http://room-booking:8080';
+
+export const environment = {
+  production: true,
+  authAPI: 'http://auth-api:8101',
+  userAPI: `http://${monolithUrl}`,
+  hotelAPI: `http://${monolithUrl}`,
+  bookingAPI: `http://${monolithUrl}`,
+};
-- 
GitLab