Skip to content

Commit f13fec1

Browse files
committed
Fixed inconcistent ports
Signed-off-by: Omkar Phansopkar <omkarphansopkar@gmail.com>
1 parent f214014 commit f13fec1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
NEXT_PUBLIC_REACT_APP_API_KEY = 08387dfc64msh94f0df087928182p1213afjsn3aa4359e369c
2-
NEXT_APP_SERVER_URL=http://localhost:5000
2+
NEXT_APP_SERVER_URL=http://localhost:5001

server/constants/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const config = {
2-
PORT: process.env.PORT || 5000,
2+
PORT: process.env.PORT || 5001,
33
JWT_SECRET: process.env.JWT_SECRET || "mysecret",
44
MONGODB_SRV_STRING: process.env.MONGODB_SRV_STRING || "gg",
55
}

src/constants/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SERVER_URL = process.env.NEXT_APP_SERVER_URL || "http://localhost:5000";
1+
export const SERVER_URL = process.env.NEXT_APP_SERVER_URL || "http://localhost:5001";

0 commit comments

Comments
 (0)