File size: 229 Bytes
d50360d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13

import { app } from "./configs/app"
import http from 'http';

const server = http.createServer(app);


server.listen(process.env.PORT || 4000, () => {
    console.log(`Server is up and runing on port ${process.env.PORT}!`)
})