From 95af88c23266857f6c81ef097e01677f1e5cf78f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?adri=C3=A1n=20romero?= <72525701+adrrf@users.noreply.github.com> Date: Mon, 30 Dec 2024 10:05:10 +0100 Subject: [PATCH] feat: add workshift and appointment to config.prod (#45) --- config.yaml.prod | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.yaml.prod b/config.yaml.prod index 9a76d98..72027c4 100644 --- a/config.yaml.prod +++ b/config.yaml.prod @@ -18,6 +18,12 @@ services: - path: "/api/v1/staff" target_service: "http://staff-svc" target_port: "3007" + - path: "/api/v1/workshifts" + target_service: "http://workshift" + target_port: "3011" + - path: "/api/v1/appointments" + target_service: "http://appointment" + target_port: "3012" endpoints_without_auth: - endpoint: "/api/v1/users/verify-2fa" method: "POST"