Skip to content

Commit 81728e1

Browse files
change port from 80 to port = process.env.PORT || 3000
1 parent ce49753 commit 81728e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const express = require('express');
22
const app = express(),
33
bodyParser = require("body-parser");
4-
port = 80;
4+
port = process.env.PORT || 3000;
55

66
const users = [];
77

0 commit comments

Comments
 (0)