From fd5aa2cba16d56f23b967c210006127ac56317d4 Mon Sep 17 00:00:00 2001 From: RandithaK Date: Sat, 15 Nov 2025 13:52:47 +0530 Subject: [PATCH 1/3] chore: trigger GitOps pipeline (empty commit) From c54947b1d445166cbad6eb60a8b5f1d840fd7f29 Mon Sep 17 00:00:00 2001 From: RandithaK Date: Sat, 15 Nov 2025 14:26:45 +0530 Subject: [PATCH 2/3] feat: add development frontend origin to CORS configuration --- cmd/gateway/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/gateway/main.go b/cmd/gateway/main.go index 11d369b..e61acd7 100644 --- a/cmd/gateway/main.go +++ b/cmd/gateway/main.go @@ -226,6 +226,7 @@ func main() { "http://127.0.0.1:3000", "https://techtorque.vercel.app", "https://techtorque.randitha.net", + "https://dev.techtorque.randitha.net", }, AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"}, AllowedHeaders: []string{"Accept", "Authorization", "Content-Type", "X-CSRF-Token"}, From 675c52448197a800259063a02e5152c777f6d5a8 Mon Sep 17 00:00:00 2001 From: RandithaK Date: Sun, 16 Nov 2025 14:09:57 +0530 Subject: [PATCH 3/3] feat: add env_var for appointments service endpoints --- config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.yaml b/config.yaml index dc2027c..eb613ab 100644 --- a/config.yaml +++ b/config.yaml @@ -36,6 +36,7 @@ services: target_url: "http://localhost:8083" strip_prefix: "/api/v1" auth_required: false # Public endpoint + env_var: "APPOINTMENTS_SERVICE_URL" # Protected appointment endpoints - name: "appointments" @@ -51,6 +52,7 @@ services: target_url: "http://localhost:8083" strip_prefix: "/api/v1" auth_required: true + env_var: "APPOINTMENTS_SERVICE_URL" # --- Service & Project Management Service (Port 8084) --- - name: "services"