UNPKG

@irfanakbari/nova-auth

Version:

Authentication and authorization module for NestJS

32 lines 1.5 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("@nestjs/core"); const common_1 = require("@nestjs/common"); const auth_module_1 = require("./auth.module"); function bootstrap() { return __awaiter(this, void 0, void 0, function* () { const app = yield core_1.NestFactory.create(auth_module_1.AuthModule); app.enableCors(); app.useGlobalPipes(new common_1.ValidationPipe({ whitelist: true, forbidNonWhitelisted: false, transform: true, })); yield app.listen(process.env.PORT || 3000); console.log(`App running on http://localhost:${process.env.PORT || 3000}`); }); } bootstrap().catch((err) => { console.error(err); process.exit(1); }); //# sourceMappingURL=main.js.map