From a96ad4b0e208f2c9faa3218cdfcb85ce526a23bf Mon Sep 17 00:00:00 2001 From: Quan Ming <116425066+wahpiangle@users.noreply.github.com> Date: Sat, 10 Aug 2024 12:33:26 +0800 Subject: [PATCH] Update redis url to use comment --- apps/api/.env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/.env.example b/apps/api/.env.example index c62bac54..9f96e8a6 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -2,8 +2,8 @@ NUM_WORKERS_PER_QUEUE=8 PORT=3002 HOST=0.0.0.0 -REDIS_URL=redis://redis:6379 -REDIS_RATE_LIMIT_URL=redis://redis:6379 +REDIS_URL=redis://localhost:6379 #for self-hosting using docker, use redis://redis:6379. For running locally, use redis://localhost:6379 +REDIS_RATE_LIMIT_URL=redis://localhost: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 ## To turn on DB authentication, you need to set up supabase.