1 | 'use strict'; |
||
2 | |||
3 | const {app} = require('./app'); |
||
4 | const port = process.env.PORT || 3000; |
||
5 | |||
6 | // Listen to the port |
||
7 | app.listen(port, () => { |
||
8 | console.log('server listening at port : ' + port); |
||
0 ignored issues
–
show
Debugging Code
introduced
by
![]() |
|||
9 | }); |
||
10 |