refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / ui / web / start.js
CommitLineData
66a7748d
JB
1import { createServer } from 'node:http'
2import { dirname, join } from 'node:path'
3import { env } from 'node:process'
4import { fileURLToPath } from 'node:url'
5import finalhandler from 'finalhandler'
6import serveStatic from 'serve-static'
32de5a57 7
a807045b 8const isCFEnvironment = env.VCAP_APPLICATION != null
66a7748d
JB
9const PORT = isCFEnvironment ? parseInt(env.PORT) : 3030
10const uiPath = join(dirname(fileURLToPath(import.meta.url)), './dist')
32de5a57 11
66a7748d 12const serve = serveStatic(uiPath)
32de5a57 13
464d3e1a 14const server = createServer(function onRequest(req, res) {
66a7748d
JB
15 serve(req, res, finalhandler(req, res))
16})
32de5a57 17
66a7748d 18server.listen(PORT, () => console.info(`App running at: http://localhost:${PORT}`))