CoastalCommitsPastes/server/src/server.ts

10 lines
270 B
TypeScript

import { createServer } from "http"
import { app } from "./app"
import config from "./lib/config"
import "./database"
;(async () => {
// await sequelize.sync()
createServer(app).listen(config.port, () =>
console.info(`Server running on port ${config.port}`)
)
})()