Skip to content

Commit

Permalink
feat: port 번호 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanmuji committed Oct 23, 2023
1 parent 73b2a1f commit e7ee65e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -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();

0 comments on commit e7ee65e

Please sign in to comment.