From 4094a3cc99f39b640f83d73701c75697f21d52f0 Mon Sep 17 00:00:00 2001 From: Arthur Danjou Date: Sun, 18 Apr 2021 18:45:32 +0200 Subject: [PATCH] Fix REDIS_HOST --- env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.ts b/env.ts index dcdae55..f89faef 100644 --- a/env.ts +++ b/env.ts @@ -22,7 +22,7 @@ export default Env.rules({ NODE_ENV: Env.schema.enum(['development', 'production', 'testing'] as const), REDIS_CONNECTION: Env.schema.enum(['local'] as const), - REDIS_HOST: Env.schema.string({ format: 'host' }), + REDIS_HOST: Env.schema.string(), REDIS_PORT: Env.schema.number(), REDIS_PASSWORD: Env.schema.string.optional(),