We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1a2aa7 commit b794227Copy full SHA for b794227
index.js
@@ -17,6 +17,7 @@ const RATELIMITINTERVAL = 1 * 60 * 1000; // 1 Min
17
18
/* INCLUDE CONFIGS ************************ */
19
dotenv.config();
20
+const port = process.env.PORT || 3000
21
/* **************************************** */
22
23
/* INCLUDE ROUTES ************************ */
@@ -80,7 +81,7 @@ app.use('/user', user);
80
81
82
83
/* SERVER START *************************** */
-app.listen(3000, () => {
84
- console.log('App listening on port 3000');
+app.listen(port, () => {
85
+ console.log(`App listening on port ${port}`);
86
});
87
0 commit comments