modarb-be / src /index.ts
–ƒ–Hozifaelgharbawy
update
d50360d
raw
history blame
229 Bytes
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}!`)
})