CoastalCommitsPastes/server/src/server.ts

11 lines
270 B
TypeScript
Raw Normal View History

2022-03-24 17:57:40 -04:00
import { createServer } from "http"
import { app } from "./app"
import config from "./lib/config"
import "./database"
2022-03-29 03:19:33 -04:00
;(async () => {
// await sequelize.sync()
2022-03-29 03:19:33 -04:00
createServer(app).listen(config.port, () =>
console.info(`Server running on port ${config.port}`)
)
})()