chore(apis/websocket)!: change default port

This commit is contained in:
PalmDevs
2024-01-17 22:36:39 +07:00
parent e600cc56f7
commit a6907b16c4
2 changed files with 2 additions and 2 deletions

View File

@@ -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"
}
```

View File

@@ -26,7 +26,7 @@ export type Config = Omit<BaseTypeOf<typeof import('../../config.json')>, '$sche
export const defaultConfig: Config = {
address: '127.0.0.1',
port: 80,
port: 8080,
ocrConcurrentQueues: 1,
clientHeartbeatInterval: 60000,
consoleLogLevel: 'info',