Update app.js
Browse files
app.js
CHANGED
|
@@ -288,7 +288,7 @@ app.use(function(err, req, res, next) {
|
|
| 288 |
res.status(500).send('Internal Serverless Error')
|
| 289 |
})
|
| 290 |
|
| 291 |
-
const port = process.env.PORT||
|
| 292 |
app.listen(port, () => {
|
| 293 |
console.log(`Server start on http://localhost:${port}`);
|
| 294 |
})
|
|
|
|
| 288 |
res.status(500).send('Internal Serverless Error')
|
| 289 |
})
|
| 290 |
|
| 291 |
+
const port = process.env.PORT||7860;
|
| 292 |
app.listen(port, () => {
|
| 293 |
console.log(`Server start on http://localhost:${port}`);
|
| 294 |
})
|