| 1234567891011 |
- import { createMobileChatApp } from './app.js';
- import { getNumberEnv } from '../../../shared/config/env.js';
- export function startMobileChatServer() {
- const app = createMobileChatApp();
- const port = getNumberEnv('MOBILE_CHAT_PORT', 3201);
- app.listen(port, () => {
- console.log(`mobile-chat server running on http://localhost:${port}`);
- });
- }
|