Skip to content

Commit b794227

Browse files
committed
Issue #12: Compatible with Heroku deployment
- Get port from process.env
1 parent e1a2aa7 commit b794227

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const RATELIMITINTERVAL = 1 * 60 * 1000; // 1 Min
1717

1818
/* INCLUDE CONFIGS ************************ */
1919
dotenv.config();
20+
const port = process.env.PORT || 3000
2021
/* **************************************** */
2122

2223
/* INCLUDE ROUTES ************************ */
@@ -80,7 +81,7 @@ app.use('/user', user);
8081
/* **************************************** */
8182

8283
/* SERVER START *************************** */
83-
app.listen(3000, () => {
84-
console.log('App listening on port 3000');
84+
app.listen(port, () => {
85+
console.log(`App listening on port ${port}`);
8586
});
8687
/* **************************************** */

0 commit comments

Comments
 (0)