mirror of
https://github.com/sasjs/server.git
synced 2026-01-11 08:20:04 +00:00
11 lines
273 B
TypeScript
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}`
|
|
)
|
|
})
|
|
})
|