/** * Setup Redis and provide a redis client * * Local development - 1 Redis instance * Out in the wild - Elasticache / Redis Cluster with username and password */ export function buildRedisClient(): Redis | Cluster; import { Redis } from 'ioredis'; import { Cluster } from 'ioredis';