From e7ee65e4a28056cd85d85e9678bcad93bd5e69af Mon Sep 17 00:00:00 2001 From: ddanmuji Date: Mon, 23 Oct 2023 21:57:01 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20port=20=EB=B2=88=ED=98=B8=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 2 +- src/main.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 708af92..d89a298 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: env: - name: NODE_ENV value: production - ports: 3000 + ports: 3065 install: npm ci build: npm run build start: npm start diff --git a/src/main.ts b/src/main.ts index 13cad38..d89c5f8 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,8 +1,9 @@ import { NestFactory } from '@nestjs/core'; + import { AppModule } from './app.module'; async function bootstrap() { - const app = await NestFactory.create(AppModule); - await app.listen(3000); + const app = await NestFactory.create(AppModule); + await app.listen(3065); } bootstrap();