mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 04:26:33 +01:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import * as redis from 'redis';
|
|
import config from '../config';
|
|
|
|
export default redis.createClient(
|
|
config.redis.port,
|
|
config.redis.host,
|
|
{
|
|
password: config.redis.pass,
|
|
prefix: config.redis.prefix,
|
|
db: config.redis.db || 0
|
|
}
|
|
);
|