24 lines
592 B
TypeScript
24 lines
592 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
|
|
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
|
|
|
|
async function bootstrap() {
|
|
|
|
const app = await NestFactory.create(AppModule);
|
|
|
|
const config = new DocumentBuilder()
|
|
.setTitle('Online Training Registration System')
|
|
.setDescription('API documentation for Training Registration Backend')
|
|
.setVersion('1.0')
|
|
.build();
|
|
|
|
const document = SwaggerModule.createDocument(app, config);
|
|
|
|
SwaggerModule.setup('api', app, document);
|
|
|
|
await app.listen(3000);
|
|
|
|
}
|
|
|
|
bootstrap(); |