rudeshark.net/src/db/redis.ts

13 lines
239 B
TypeScript
Raw Normal View History

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
2019-04-13 12:19:32 +02:00
export default redis.createClient(
config.redis.port,
config.redis.host,
{
2019-03-09 15:44:54 +01:00
auth_pass: config.redis.pass,
prefix: config.redis.prefix,
db: config.redis.db || 0
}
2019-04-13 12:19:32 +02:00
);