From 4ffa5f611e4ebd432b46de0abb9bea2650180148 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 23 Mar 2020 10:52:49 +0100 Subject: [PATCH] PORT Variable --- backend/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.js b/backend/app.js index 11e33fe..41906cd 100644 --- a/backend/app.js +++ b/backend/app.js @@ -7,7 +7,7 @@ const jwt_secret = "jwt_secret"; const apiRoute = require("./routes/index"); -const port = process.env.port || 3000; +const port = process.env.PORT || 3000; app.use(cookieParser());