From a6907b16c4607444d37aa95d41a97e1c98c1b4cd Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Wed, 17 Jan 2024 22:36:39 +0700 Subject: [PATCH] chore(apis/websocket)!: change default port --- apis/websocket/docs/1_configuration.md | 2 +- apis/websocket/src/utils/getConfig.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/websocket/docs/1_configuration.md b/apis/websocket/docs/1_configuration.md index 95e9f74..aead5c5 100644 --- a/apis/websocket/docs/1_configuration.md +++ b/apis/websocket/docs/1_configuration.md @@ -8,7 +8,7 @@ This is the default configuration (provided in [config.json](../config.json)): "port": 3000, "ocrConcurrentQueues": 1, "clientHeartbeatInterval": 60000, - "debugLogsInProduction": false + "consoleLogLevel": "log" } ``` diff --git a/apis/websocket/src/utils/getConfig.ts b/apis/websocket/src/utils/getConfig.ts index d26042e..90bf638 100755 --- a/apis/websocket/src/utils/getConfig.ts +++ b/apis/websocket/src/utils/getConfig.ts @@ -26,7 +26,7 @@ export type Config = Omit, '$sche export const defaultConfig: Config = { address: '127.0.0.1', - port: 80, + port: 8080, ocrConcurrentQueues: 1, clientHeartbeatInterval: 60000, consoleLogLevel: 'info',