# ai-im-server **Repository Path**: facemap/ai-im-server ## Basic Information - **Project Name**: ai-im-server - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-15 - **Last Updated**: 2025-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IM Server A WebSocket-based IM server built with Node.js, TypeScript, and TypeORM. ## Setup 1. Install dependencies: ```bash pnpm install ``` 2. Copy `.env.example` to `.env` and configure: ```bash cp .env.example .env ``` 3. Run in development: ```bash pnpm run dev ``` 4. Build for production: ```bash pnpm run build pnpm start ``` ## Configuration - `DATABASE_TYPE`: sqlite | mysql | mongodb - `DATABASE_URL`: Database connection URL - `WEBSOCKET_PORT`: WebSocket server port - `LOG_LEVEL`: info | error | debug