server.ts 356 B

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