You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 regels
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;