From e9517d67d4d7631b38394890e8716baa084cf2e5 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 4 Dec 2024 20:17:12 +0530 Subject: [PATCH] fix: use process.env.BACKEND_PORT --- server/src/constants/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/constants/config.ts b/server/src/constants/config.ts index 74d9de4c..1943fbe4 100644 --- a/server/src/constants/config.ts +++ b/server/src/constants/config.ts @@ -1,4 +1,4 @@ -export const SERVER_PORT = process.env.SERVER_PORT ? Number(process.env.SERVER_PORT) : 8080 +export const SERVER_PORT = process.env.BACKEND_PORT ? Number(process.env.BACKEND_PORT) : 8080 export const DEBUG = process.env.DEBUG === 'true' export const LOGS_PATH = process.env.LOGS_PATH ?? 'server/logs' export const ANALYTICS_ID = 'oss' \ No newline at end of file