main.ts 434 B

123456789101112
  1. import app from './app';
  2. import { config } from './config';
  3. const port = config.port || 3000;
  4. // 启动服务器
  5. app.listen(port, () => {
  6. console.log(`🚀 服务器运行在 http://localhost:${port}`);
  7. console.log(`📡 API 端点: http://localhost:${port}/api`);
  8. console.log(`🩺 健康检查: http://localhost:${port}/health`);
  9. console.log(`🎨 颜色统计: http://localhost:${port}/api/designs/color-statistics`);
  10. });