Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

8 řádky
240 B

  1. const config = require('./config');
  2. if (config.redis) {
  3. const redis = require('redis');
  4. global.redisClient = redis.createClient(config.redis === true ? 'redis://redis' : config.redis);
  5. }
  6. module.exports = global.redisClient;