localhost_oa_based/src/config/redis.config.ts

15 lines
415 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ConfigType, registerAs } from '@nestjs/config';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { env, envNumber } from '~/global/env';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
export const redisRegToken = 'redis';
2024-02-28 08:32:35 +08:00
export const RedisConfig = registerAs(redisRegToken, () => ({
host: env('REDIS_HOST', '127.0.0.1'),
port: envNumber('REDIS_PORT', 6379),
password: env('REDIS_PASSWORD'),
db: envNumber('REDIS_DB'),
2024-02-28 17:02:46 +08:00
}));
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
export type IRedisConfig = ConfigType<typeof RedisConfig>;