From a71453206b4a617e8c335e590922fc3eee61c88c Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Fri, 20 Jun 2025 15:35:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(env)=20update=20yprovider=20env=20?= =?UTF-8?q?for=20local=20development?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In local development the notification to the yprovider server was not working anymore because of a recent change in the container name. We adapt the env variables to match the new container name. --- env.d/development/common.dist | 4 ++-- env.d/development/common.e2e.dist | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/env.d/development/common.dist b/env.d/development/common.dist index 521db759..f4a601c7 100644 --- a/env.d/development/common.dist +++ b/env.d/development/common.dist @@ -56,11 +56,11 @@ AI_API_KEY=password AI_MODEL=llama # Collaboration -COLLABORATION_API_URL=http://y-provider:4444/collaboration/api/ +COLLABORATION_API_URL=http://y-provider-development:4444/collaboration/api/ COLLABORATION_BACKEND_BASE_URL=http://app-dev:8000 COLLABORATION_SERVER_ORIGIN=http://localhost:3000 COLLABORATION_SERVER_SECRET=my-secret COLLABORATION_WS_URL=ws://localhost:4444/collaboration/ws/ -Y_PROVIDER_API_BASE_URL=http://y-provider:4444/api/ +Y_PROVIDER_API_BASE_URL=http://y-provider-development:4444/api/ Y_PROVIDER_API_KEY=yprovider-api-key diff --git a/env.d/development/common.e2e.dist b/env.d/development/common.e2e.dist index 3b2e2afc..b5a51136 100644 --- a/env.d/development/common.e2e.dist +++ b/env.d/development/common.e2e.dist @@ -1,4 +1,6 @@ # For the CI job test-e2e BURST_THROTTLE_RATES="200/minute" +COLLABORATION_API_URL=http://y-provider:4444/collaboration/api/ DJANGO_SERVER_TO_SERVER_API_TOKENS=test-e2e SUSTAINED_THROTTLE_RATES="200/hour" +Y_PROVIDER_API_BASE_URL=http://y-provider:4444/api/ \ No newline at end of file