我想知道如何使用我的ConfigService created as described here。在我的应用程序的最高级别。
我的main.js
文件看起来像这样:
import { NestFactory } from '@nestjs/core';
import { TypeormStore } from 'connect-typeorm';
import * as session from 'express-session';
import { getRepository } from 'typeorm';
import { Session } from '../../domains/session/Session';
import { AppModule } from './AppModule';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.use(session({
resave: false,
saveUninitialized: false,
store: new TypeormStore({
cleanupLimit: 2,
ttl: 86400
}).connect(getRepository(Session)),
secret: process.env.COOKIE_SECRET as string
}))
await app.listen(3000);
}
bootstrap();
我想要的是将process.env.COOKIE_SECRET
移动到ConfigService
中的getter。我能在这个级别上获得服务吗?
1条答案
按热度按时间s5a0g9ez1#
要在工厂创建应用程序 (通常在
const app = await NestFactory.create(AppModule)
之后) 后从应用程序上下文中拉出任何服务,您可以使用应用程序的.get()
方法拉出服务以供用途:在这里,您可以使用您创建的配置方法。