mirror of
https://github.com/n08i40k/schedule-parser-next.git
synced 2025-12-06 17:57:45 +03:00
44 lines
1.5 KiB
TypeScript
44 lines
1.5 KiB
TypeScript
import { NestFactory } from "@nestjs/core";
|
|
import { AppModule } from "./app.module";
|
|
import { ValidatorOptions } from "class-validator";
|
|
import { PartialValidationPipe } from "./utility/validation/partial-validation.pipe";
|
|
import { ClassValidatorInterceptor } from "./utility/validation/class-validator.interceptor";
|
|
import { DocumentBuilder, SwaggerModule } from "@nestjs/swagger";
|
|
import { apiConstants, httpsConstants } from "./contants";
|
|
import * as fs from "node:fs";
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule, {
|
|
httpsOptions: {
|
|
cert: fs.readFileSync(httpsConstants.certPath),
|
|
key: fs.readFileSync(httpsConstants.keyPath),
|
|
},
|
|
});
|
|
const validatorOptions: ValidatorOptions = {
|
|
enableDebugMessages: true,
|
|
forbidNonWhitelisted: true,
|
|
whitelist: true,
|
|
};
|
|
app.useGlobalPipes(new PartialValidationPipe(validatorOptions));
|
|
app.useGlobalInterceptors(new ClassValidatorInterceptor(validatorOptions));
|
|
app.enableCors();
|
|
|
|
const swaggerConfig = new DocumentBuilder()
|
|
.setTitle("Schedule Parser")
|
|
.setDescription("Парсер расписания")
|
|
.setVersion(apiConstants.version)
|
|
.build();
|
|
const swaggerDocument = SwaggerModule.createDocument(app, swaggerConfig);
|
|
swaggerDocument.servers = [
|
|
{
|
|
url: `https://localhost:${apiConstants.port}`,
|
|
description: "Локальный сервер для разработки",
|
|
},
|
|
];
|
|
SwaggerModule.setup("api-docs", app, swaggerDocument);
|
|
|
|
await app.listen(apiConstants.port);
|
|
}
|
|
|
|
bootstrap().then();
|