Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

8 строки
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;