1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-13 00:50:06 +00:00
Files
server/api/src/server.ts

9 lines
226 B
TypeScript

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