diff --git a/.github/workflows/main_syncrow(staging).yml b/.github/workflows/main_syncrow(staging).yml index ea5d088..952632a 100644 --- a/.github/workflows/main_syncrow(staging).yml +++ b/.github/workflows/main_syncrow(staging).yml @@ -52,4 +52,4 @@ jobs: --name ${{ env.AZURE_WEB_APP_NAME }} \ --resource-group backend \ --docker-custom-image-name ${{ env.ACR_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} \ - --docker-registry-server-url https://${{ env.ACR_REGISTRY }} \ No newline at end of file + --docker-registry-server-url https://${{ env.ACR_REGISTRY }} diff --git a/.prettierrc b/.prettierrc index dcb7279..9d36f26 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { "singleQuote": true, - "trailingComma": "all" + "trailingComma": "all", + "endOfLine": "auto" } \ No newline at end of file diff --git a/src/app.module.ts b/src/app.module.ts index 9025fa4..88c0550 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -57,4 +57,4 @@ import { TimeZoneModule } from './timezone/timezone.module'; }, ], }) -export class AuthModule {} +export class AppModule {} diff --git a/src/main.ts b/src/main.ts index d9291bd..894ecd1 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,5 +1,5 @@ import { NestFactory } from '@nestjs/core'; -import { AuthModule } from './app.module'; +import { AppModule } from './app.module'; import rateLimit from 'express-rate-limit'; import helmet from 'helmet'; import { setupSwaggerAuthentication } from '../libs/common/src/util/user-auth.swagger.utils'; @@ -8,7 +8,7 @@ import { json, urlencoded } from 'body-parser'; import { SeederService } from '@app/common/seed/services/seeder.service'; async function bootstrap() { - const app = await NestFactory.create(AuthModule); + const app = await NestFactory.create(AppModule); app.enableCors();