Skip to content

Commit

Permalink
Procfile
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolsahu2k committed Mar 21, 2021
1 parent c1d6133 commit 56cb678
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ app.use(authRoutes);
app.use(requestRoutes);
app.use(acceptRoutes);
// app.use(google_maps);

app.listen(process.env.APP_LISTEN_PORT, function() {
console.log("Server is connected");
const PORT = process.env.PORT || 3000;
app.listen(PORT, '0.0.0.0', () => {
console.log(`Our app is running on port ${ PORT }`);
});

0 comments on commit 56cb678

Please sign in to comment.