We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec0325a commit 245b7e3Copy full SHA for 245b7e3
Procfile
@@ -0,0 +1 @@
1
+web: node index.js
index.js
@@ -6,7 +6,7 @@ const jwt = require("jsonwebtoken");
6
7
// **** -> server config <- *******
8
const server = express();
9
-const PORT = 8000 || process.env.PORT;
+const PORT = process.env.PORT || 3000;
10
11
12
// *** -> MongoDB config <- ******
0 commit comments