21 lines
650 B
TypeScript
21 lines
650 B
TypeScript
|
import { NestFactory } from '@nestjs/core';
|
||
|
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
|
||
|
import { AppModule } from './app.module';
|
||
|
|
||
|
async function bootstrap() {
|
||
|
const app = await NestFactory.create(AppModule);
|
||
|
|
||
|
// Configurar títulos de documentación
|
||
|
const options = new DocumentBuilder()
|
||
|
.setTitle('MongoDB Book REST API')
|
||
|
.setDescription('API REST para libros con MongoDB')
|
||
|
.setVersion('1.0')
|
||
|
.build();
|
||
|
const document = SwaggerModule.createDocument(app, options);
|
||
|
|
||
|
// La ruta en que se sirve la documentación
|
||
|
SwaggerModule.setup('docs', app, document);
|
||
|
|
||
|
await app.listen(3000);
|
||
|
}
|
||
|
bootstrap();
|