2016-12-28 23:49:51 +01:00
|
|
|
import * as redis from 'redis';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../config';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-11 08:50:27 +02:00
|
|
|
export default config.redis ? redis.createClient(
|
2016-12-28 23:49:51 +01:00
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
|
|
|
auth_pass: config.redis.pass
|
|
|
|
}
|
2018-10-11 08:50:27 +02:00
|
|
|
) : null;
|