From fb1b95a15712c7e8188e4e1e003e61c62f21d478 Mon Sep 17 00:00:00 2001 From: Ishaan Dey Date: Mon, 13 May 2024 20:38:19 -0700 Subject: [PATCH] Revert "orchestrator port 8080" This reverts commit 4341fbb8a78e917bf073491175134789228e9efd. --- 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 fd43a3a..ef307eb 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 || 8080 +const port = process.env.PORT || 4001 app.use(express.json()) dotenv.config()