add server.js
This commit is contained in:
parent
8a01b0ff35
commit
c286a2f9c2
1 changed files with 6 additions and 0 deletions
6
server/server.js
Normal file
6
server/server.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
const app = require('./app');
|
||||
const PORT = process.env.PORT || 5000;
|
||||
|
||||
app.listen(PORT, () => {
|
||||
console.log(`Server running on port ${PORT}`);
|
||||
});
|
Loading…
Reference in a new issue