From 4341fbb8a78e917bf073491175134789228e9efd Mon Sep 17 00:00:00 2001 From: Ishaan Dey Date: Mon, 13 May 2024 16:20:22 -0700 Subject: [PATCH] orchestrator port 8080 --- backend/orchestrator/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/orchestrator/src/index.ts b/backend/orchestrator/src/index.ts index ef307eb..fd43a3a 100644 --- a/backend/orchestrator/src/index.ts +++ b/backend/orchestrator/src/index.ts @@ -14,7 +14,7 @@ import { import { z } from "zod" const app = express() -const port = process.env.PORT || 4001 +const port = process.env.PORT || 8080 app.use(express.json()) dotenv.config()