Update proxy to use a different port.

Update proxy to use port defined in PORT environment variable
This commit is contained in:
youngchief btw ツ 2020-06-10 13:07:56 -07:00 committed by GitHub
parent cc22d117b0
commit 275fadd265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,4 +31,4 @@ app.get("/", function(req, res) {
);
});
app.listen(3000);
app.listen(process.env.PORT);