HuuDatLego commited on
Commit
605d9dd
·
verified ·
1 Parent(s): 87c2634

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. server.js +2 -2
server.js CHANGED
@@ -105,6 +105,6 @@ app.post('/run', (req, res) => {
105
  }
106
  });
107
 
108
- app.listen(port, () => {
109
- console.log(`UniCode Backend running at http://localhost:${port}`);
110
  });
 
105
  }
106
  });
107
 
108
+ app.listen(port, "0.0.0.0", () => {
109
+ console.log(`Server is running on port ${port}`);
110
  });