From b031c4b280fa253cbf747f533904b9433fbe1073 Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Sat, 25 Feb 2023 13:14:49 -0800 Subject: [PATCH] allow for password --- src/util.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.ts b/src/util.ts index 6810e11..d638521 100644 --- a/src/util.ts +++ b/src/util.ts @@ -35,4 +35,5 @@ export const getRedisConnection = () => ({ host: process.env.REDIS_HOST!, port: Number.parseInt(process.env.REDIS_PORT!), db: process.env.REDIS_DB ? Number.parseInt(process.env.REDIS_DB!) : 0, + password: process.env.REDIS_PASSWORD, });