Sharkey/src/db/redis.ts

13 lines
238 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
import * as redis from 'redis';
2018-04-02 07:15:53 +03:00
import config from '../config';
2016-12-29 00:49:51 +02:00
2019-04-13 13:19:32 +03:00
export default redis.createClient(
config.redis.port,
config.redis.host,
{
2019-06-09 17:07:32 +03:00
password: config.redis.pass,
2019-03-09 16:44:54 +02:00
prefix: config.redis.prefix,
db: config.redis.db || 0
}
2019-04-13 13:19:32 +03:00
);