Env vars in main file
Using environment variables in the main file.
APP_PORT = 3000async function bootstrap() {
const app = await NestFactory.create(AppModule);
const configService = app.get(ConfigService);
const port = configService.get<number>('APP_PORT');
await app.listen(port);
}Last updated