1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-11 08:20:04 +00:00
Files
server/api/src/server.ts
2021-11-12 23:59:55 +05:00

11 lines
273 B
TypeScript

import appPromise from './app'
import { configuration } from '../package.json'
appPromise.then((app) => {
app.listen(configuration.sasJsPort, () => {
console.log(
`⚡️[server]: Server is running at http://localhost:${configuration.sasJsPort}`
)
})
})