-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.module.ts
More file actions
82 lines (81 loc) · 2.35 KB
/
app.module.ts
File metadata and controls
82 lines (81 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { Module } from "@nestjs/common";
import { AppController } from "./app.controller";
import { AppService } from "./app.service";
import { ConfigModule, ConfigService } from "@nestjs/config";
import { AuthModule } from "./auth/auth.module";
import { UserModule } from "./user/user.module";
import { EventModule } from "./event/event.module";
import { TeamModule } from "./team/team.module";
import { MatchModule } from "./match/match.module";
import { TypeOrmModule } from "@nestjs/typeorm";
import { DatabaseConfig } from "./DatabaseConfig";
import { GithubApiModule } from "./github-api/github-api.module";
import { ScheduleModule } from "@nestjs/schedule";
import { StatsModule } from "./stats/stats.module";
import { LoggerModule } from "nestjs-pino";
import { Request } from "express";
@Module({
imports: [
ScheduleModule.forRoot(),
ConfigModule.forRoot({
isGlobal: true,
envFilePath: ".env",
}),
LoggerModule.forRoot({
pinoHttp: {
autoLogging: true,
transport:
process.env.NODE_ENV !== "production"
? {
target: "pino-pretty",
options: {
singleLine: true,
colorize: true,
ignore: "pid,hostname",
messageFormat: "[{context}] {msg}",
},
}
: undefined,
customProps: (req: Request) => {
const customReq = req as Request & { user?: { id: string } };
const user = customReq.user;
return {
userId: user?.id,
};
},
serializers: {
req: (req) => {
return {
id: req.id,
method: req.method,
url: req.url,
};
},
res: (res) => {
return {
statusCode: res.statusCode,
};
},
},
},
}),
TypeOrmModule.forRootAsync({
imports: [ConfigModule],
useFactory: (config: ConfigService) => {
const databaseConfig = new DatabaseConfig(config);
return databaseConfig.getConfig();
},
inject: [ConfigService],
}),
AuthModule,
UserModule,
EventModule,
TeamModule,
MatchModule,
GithubApiModule,
StatsModule,
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}