| // | |
| // SPDX-FileCopyrightText: Hadad <[email protected]> | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // | |
| export default { | |
| server: { | |
| port: 3000, | |
| host: '0.0.0.0' | |
| }, | |
| api: { | |
| baseUrl: process.env.OPENAI_API_BASE_URL, | |
| key: process.env.OPENAI_API_KEY, | |
| timeout: 120000 | |
| }, | |
| storage: { | |
| maxAge: 600000, | |
| cleanupInterval: 60000 | |
| }, | |
| limits: { | |
| bodySize: '2mb', | |
| maxContentLength: Infinity | |
| }, | |
| generation: { | |
| progressInterval: 800, | |
| startDelay: 100, | |
| maxProgress: 90 | |
| }, | |
| paths: { | |
| views: 'public', | |
| mainView: 'webViewer' | |
| } | |
| }; |