From 255be2a2ffa577fe39c3ff7ea0766cfe2efc33da Mon Sep 17 00:00:00 2001 From: Pulkit Saini <54940154+pulbyte@users.noreply.github.com> Date: Wed, 11 Jun 2025 20:23:32 +0530 Subject: [PATCH] Fix PLAYWRIGHT_MICROSERVICE_URL env var to use /scrape endpoint (#1654) The correct environment variable should be PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/scrape instead of PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/html --- apps/api/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/.env.example b/apps/api/.env.example index d54c696d..021456b3 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -4,7 +4,7 @@ PORT=3002 HOST=0.0.0.0 REDIS_URL=redis://redis:6379 #for self-hosting using docker, use redis://redis:6379. For running locally, use redis://localhost:6379 REDIS_RATE_LIMIT_URL=redis://redis:6379 #for self-hosting using docker, use redis://redis:6379. For running locally, use redis://localhost:6379 -PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/html +PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/scrape ## To turn on DB authentication, you need to set up supabase. USE_DB_AUTHENTICATION=true