From 14896a9fdda7c62e6d51c01f61c88210c7a77d2f Mon Sep 17 00:00:00 2001 From: Matt Joyce Date: Sat, 1 Jun 2024 19:03:16 +1000 Subject: [PATCH] Fix PLAYWRIGHT_MICROSERVICE_URL It needs to end in html, otherwise scrape will 404 --- 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 7934903..a6eaae3 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -3,7 +3,7 @@ NUM_WORKERS_PER_QUEUE=8 PORT=3002 HOST=0.0.0.0 REDIS_URL=redis://localhost:6379 -PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000 +PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/html ## To turn on DB authentication, you need to set up supabase. USE_DB_AUTHENTICATION=true