From 092b17441f48c98bfd0b0776907156d30ed43387 Mon Sep 17 00:00:00 2001 From: Hans Date: Thu, 17 Aug 2023 00:40:26 +0700 Subject: [PATCH] update default port --- desktop/main.js | 2 +- src/CONFIG.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/main.js b/desktop/main.js index 3a153b4d13c5..b19bef060ba9 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -11,7 +11,7 @@ const CONFIG = require('../src/CONFIG').default; const CONST = require('../src/CONST').default; const Localize = require('../src/libs/Localize'); -const port = process.env.PORT || 8080; +const port = process.env.PORT || 8082; const {DESKTOP_SHORTCUT_ACCELERATOR} = CONST; app.setName('New Expensify'); diff --git a/src/CONFIG.js b/src/CONFIG.js index c5825203db09..e96afec914ac 100644 --- a/src/CONFIG.js +++ b/src/CONFIG.js @@ -80,7 +80,7 @@ export default { }, CAPTURE_METRICS: lodashGet(Config, 'CAPTURE_METRICS', 'false') === 'true', ONYX_METRICS: lodashGet(Config, 'ONYX_METRICS', 'false') === 'true', - DEV_PORT: process.env.PORT || 8080, + DEV_PORT: process.env.PORT || 8082, E2E_TESTING: lodashGet(Config, 'E2E_TESTING', 'false') === 'true', SEND_CRASH_REPORTS: lodashGet(Config, 'SEND_CRASH_REPORTS', 'false') === 'true', IS_USING_WEB_PROXY: getPlatform() === 'web' && useWebProxy,