From 507d79061b684ef56af814b8dff1f2892e1f52ce Mon Sep 17 00:00:00 2001 From: Ian Liu Date: Tue, 30 Jul 2024 16:53:03 -0700 Subject: [PATCH 1/2] Dummy change to promote api deployment. --- api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/README.md b/api/README.md index 8393a7e16..4fe44ff14 100644 --- a/api/README.md +++ b/api/README.md @@ -78,4 +78,4 @@ These are the steps to generate the client library used by the frontend componen distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. \ No newline at end of file From 1207836c5d7dbd0b8a0ef4934f5eea8b7e42efb7 Mon Sep 17 00:00:00 2001 From: Ian Liu Date: Wed, 31 Jul 2024 09:16:20 -0700 Subject: [PATCH 2/2] dummy change --- api/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main.ts b/api/src/main.ts index 58c5c0857..da9079581 100644 --- a/api/src/main.ts +++ b/api/src/main.ts @@ -5,11 +5,11 @@ import { PublicNoticeService } from '@api-modules/project/public-notice.service' import { INestApplication, ValidationPipe } from '@nestjs/common'; import { NestFactory } from '@nestjs/core'; import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'; +import { BatchJobEnum } from '@src/app-constants'; import 'dotenv/config'; import { json, urlencoded } from 'express'; import helmet from 'helmet'; import { Logger } from 'nestjs-pino'; -import { BatchJobEnum } from '@src/app-constants'; import { ConnectionOptions, createConnection } from 'typeorm'; import { AppModule } from './app/app.module'; import * as ormConfigMain from './migrations/ormconfig-migration-main';