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