From 26a19757994952e8218a3dc6c9d77572b26eded8 Mon Sep 17 00:00:00 2001 From: Guillermo Pages Date: Wed, 5 Nov 2025 21:36:36 +0100 Subject: [PATCH] fix(auth): update manager app to use dedicated auth backend Updated SwissOID configuration to use manager-specific auth backend: - NEXT_PUBLIC_AUTH_BACKEND_URL: https://manager-auth.api.playchoo.com - NEXT_PUBLIC_SWISSOID_TARGET_SERVICE_HANDLE: playchoo-manager This separates manager authentication from consumer app authentication as required by the architecture. Staging uses staging.manager-auth.api.playchoo.com. --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 258bac4..5f5de84 100644 --- a/.drone.yml +++ b/.drone.yml @@ -30,8 +30,8 @@ steps: - BUILDKIT_INLINE_CACHE=1 # Application build arguments - NEXT_PUBLIC_PYTHON_API_URL=https://api.playchoo.com - - NEXT_PUBLIC_AUTH_BACKEND_URL=https://auth.api.playchoo.com - - NEXT_PUBLIC_SWISSOID_TARGET_SERVICE_HANDLE=playchoo + - NEXT_PUBLIC_AUTH_BACKEND_URL=https://manager-auth.api.playchoo.com + - NEXT_PUBLIC_SWISSOID_TARGET_SERVICE_HANDLE=playchoo-manager - NEXT_PUBLIC_APP_VERSION=0.1.0 - NEXT_PUBLIC_WEBSOCKET_URL=wss://api.playchoo.com dockerfile: docker/Dockerfile