randydev commited on
Commit
94ccbc7
·
verified ·
1 Parent(s): 1c99181

Update startup/lifestyle.js

Browse files
Files changed (1) hide show
  1. startup/lifestyle.js +1 -1
startup/lifestyle.js CHANGED
@@ -22,7 +22,7 @@ const startup = async () => {
22
 
23
  const startServer = async (app) => {
24
  await startup();
25
- app.listen(port, () => {
26
  console.log(`Server running on http://localhost:${port}`);
27
  });
28
  };
 
22
 
23
  const startServer = async (app) => {
24
  await startup();
25
+ app.listen(port, "0.0.0.0", () => {
26
  console.log(`Server running on http://localhost:${port}`);
27
  });
28
  };