feat: User operations on join org
This commit is contained in:
@@ -2,13 +2,14 @@ import { NestFactory } from '@nestjs/core';
|
||||
import { AppModule } from './app.module';
|
||||
import { ConfigService } from '@nestjs/config';
|
||||
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
|
||||
import { Logger } from '@nestjs/common';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
|
||||
const swaggerConfig = new DocumentBuilder()
|
||||
.setTitle('Kaa Khane')
|
||||
.setDescription(`API Documentation for Kaa Khane`)
|
||||
.setTitle('MultiTenant Saas')
|
||||
.setDescription(`API Documentation for a simple MultiTenant Saas Application`)
|
||||
.setVersion('0.0.1')
|
||||
.addGlobalResponse(
|
||||
{
|
||||
@@ -46,5 +47,7 @@ async function bootstrap() {
|
||||
const port = config.get<number>('PORT') ?? 3000;
|
||||
|
||||
await app.listen(port);
|
||||
|
||||
Logger.log(`Listning on port ${port}`)
|
||||
}
|
||||
bootstrap();
|
||||
|
||||
Reference in New Issue
Block a user