Skip to content

Commit b4d2303

Browse files
Merge pull request #12 from ShubhaMahobia/shubham_dev
Update port number to 8080
2 parents 34484ee + a16f949 commit b4d2303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const express = require("express");
22
const mongoose = require("mongoose");
33
const router = require("./routes/authenticationRoutes");
44
var app = express();
5-
const port = 3000;
5+
const port = 8080;
66
app.listen(port, function () {
77
console.log(`Server Running on PORT ${port}`);
88
});

0 commit comments

Comments
 (0)