Files
automatisch/packages/backend/src/config/redis.js
2024-01-04 22:24:42 +01:00

17 lines
329 B
JavaScript

import appConfig from './app.js';
const redisConfig = {
host: appConfig.redisHost,
port: appConfig.redisPort,
username: appConfig.redisUsername,
password: appConfig.redisPassword,
enableOfflineQueue: false,
enableReadyCheck: true,
};
if (appConfig.redisTls) {
redisConfig.tls = {};
}
export default redisConfig;