Sharkey/src/db/redis.ts

13 lines
238 B
TypeScript
Raw Normal View History

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