bceeb5cee8
This reverts commit b5024e3f45
.
10 lines
270 B
TypeScript
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}`)
|
|
)
|
|
})()
|