File tree 7 files changed +211
-1
lines changed
7 files changed +211
-1
lines changed Original file line number Diff line number Diff line change 36
36
echo "DB_PORT=${{ secrets.PRODUCT_DB_PORT }}" >> configs/.env.db.production
37
37
echo "DB_USERNAME=${{ secrets.PRODUCT_DB_USERNAME }}" >> configs/.env.db.production
38
38
echo "DB_PASSWORD=${{ secrets.PRODUCT_DB_PASSWORD }}" >> configs/.env.db.production
39
+ echo "REDIS_HOST=${{secrets.REDIS_HOST }}" >> configs/.env.db.production
40
+ echo "REDIS_PORT=${{secrets.REDIS_PORT}}" >> configs/.env.db.production
41
+ echo "REDIS_USERNAME=${{secrets.REDIS_USERNAME}}" >> configs/.env.db.production
42
+ echo "REDIS_PASSWORD=${{secrets.REDIS_PASSWORD}}" >> configs/.env.db.production
39
43
40
44
npm ci
41
45
npm run build
Original file line number Diff line number Diff line change 28
28
"@nestjs/swagger" : " ^8.0.1" ,
29
29
"@nestjs/typeorm" : " ^10.0.2" ,
30
30
"cross-env" : " ^7.0.3" ,
31
+ "ioredis" : " ^5.4.1" ,
31
32
"mysql2" : " ^3.11.3" ,
32
33
"nest-winston" : " ^1.9.7" ,
33
34
"pm2" : " ^5.4.2" ,
50
51
"eslint" : " ^9.0.0" ,
51
52
"eslint-config-prettier" : " ^9.0.0" ,
52
53
"eslint-plugin-prettier" : " ^5.0.0" ,
54
+ "ioredis-mock" : " ^8.9.0" ,
53
55
"jest" : " ^29.5.0" ,
54
56
"prettier" : " ^3.0.0" ,
55
57
"source-map-support" : " ^0.5.21" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { winstonModule } from './common/logger/logger.module';
3
3
import { TypeOrmModule } from '@nestjs/typeorm' ;
4
4
import { ConfigModule , ConfigService } from '@nestjs/config' ;
5
5
import { loadDBSetting } from './common/database/load.config' ;
6
+ import { RedisModule } from './redis/redis.module' ;
6
7
7
8
@Module ( {
8
9
imports : [
@@ -19,6 +20,7 @@ import { loadDBSetting } from './common/database/load.config';
19
20
useFactory : ( configService : ConfigService ) =>
20
21
loadDBSetting ( configService ) ,
21
22
} ) ,
23
+ RedisModule ,
22
24
] ,
23
25
controllers : [ ] ,
24
26
providers : [ ] ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { ConfigService } from '@nestjs/config';
3
3
export function loadDBSetting ( configService : ConfigService ) {
4
4
const type = configService . get < 'mysql' | 'sqlite' > ( 'DB_TYPE' ) ;
5
5
const database = configService . get < string > ( 'DB_DATABASE' ) ;
6
- const host = configService . get < string | null > ( 'DB_HOST' ) ;
6
+ const host = configService . get < string > ( 'DB_HOST' ) ;
7
7
const port = configService . get < number > ( 'DB_PORT' ) ;
8
8
const username = configService . get < string > ( 'DB_USERNAME' ) ;
9
9
const password = configService . get < string > ( 'DB_PASSWORD' ) ;
Original file line number Diff line number Diff line change
1
+ import { Global , Module } from '@nestjs/common' ;
2
+ import { ConfigModule , ConfigService } from '@nestjs/config' ;
3
+ import { RedisService } from './redis.service' ;
4
+ import Redis from 'ioredis' ;
5
+ import Redis_Mock from 'ioredis-mock' ;
6
+
7
+ @Global ( )
8
+ @Module ( {
9
+ imports : [ ConfigModule ] ,
10
+ providers : [
11
+ {
12
+ provide : 'REDIS_CLIENT' ,
13
+ inject : [ ConfigService ] ,
14
+ useFactory : async ( configService : ConfigService ) => {
15
+ const envType = process . env . NODE_ENV ;
16
+ let redis : Redis ;
17
+ if ( envType === 'test' ) {
18
+ redis = new Redis_Mock ( ) ;
19
+ } else {
20
+ redis = new Redis ( {
21
+ host : configService . get < string > ( 'REDIS_HOST' ) ,
22
+ port : configService . get < number > ( 'REDIS_PORT' ) ,
23
+ username : configService . get < string > ( 'REDIS_USERNAME' ) ,
24
+ password : configService . get < string > ( 'REDIS_PASSWORD' ) ,
25
+ } ) ;
26
+ }
27
+ return redis ;
28
+ } ,
29
+ } ,
30
+ RedisService ,
31
+ ] ,
32
+ exports : [ 'REDIS_CLIENT' ] ,
33
+ } )
34
+ export class RedisModule { }
Original file line number Diff line number Diff line change
1
+ import { Inject , Injectable } from '@nestjs/common' ;
2
+ import Redis from 'ioredis' ;
3
+
4
+ @Injectable ( )
5
+ export class RedisService extends Redis {
6
+ constructor ( @Inject ( 'REDIS_CLIENT' ) private readonly redisClient : Redis ) {
7
+ super ( redisClient . options ) ;
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments