fivocell 8.10.1 → 8.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3345,7 +3345,8 @@ app.get('/api/dashboard', async (_req, res) => {
3345
3345
  }
3346
3346
  });
3347
3347
  // ─── Start with port conflict handling ─────────────────────────────────
3348
- const server = app.listen(PORT, () => {
3348
+ const HOST = process.env.CELL_DAEMON_HOST || '127.0.0.1';
3349
+ const server = app.listen(Number(PORT), HOST, () => {
3349
3350
  console.log(`Cell Daemon running on http://localhost:${PORT}`);
3350
3351
  console.log(`MCP endpoint: POST http://localhost:${PORT}/mcp`);
3351
3352
  console.log(`Health: http://localhost:${PORT}/health`);