11 lines
249 B
TypeScript
Executable File
11 lines
249 B
TypeScript
Executable File
import Redis from "ioredis";
|
|
|
|
const redisUrl = process.env.REDIS_URL ?? "";
|
|
|
|
console.log(`\n\n[//] Redis URL: ${redisUrl}`);
|
|
|
|
const _redis =
|
|
redisUrl && redisUrl.length > 0 ? new Redis(redisUrl) : undefined;
|
|
|
|
export const redis = _redis as Redis;
|