import finalhandler from 'finalhandler' import { createServer } from 'node:http' import { dirname, join } from 'node:path' import { env } from 'node:process' import { fileURLToPath } from 'node:url' import serveStatic from 'serve-static' const isCFEnvironment = env.VCAP_APPLICATION != null const PORT = isCFEnvironment ? Number.parseInt(env.PORT) : 3030 const uiPath = join(dirname(fileURLToPath(import.meta.url)), './dist') const serve = serveStatic(uiPath) const server = createServer((req, res) => serve(req, res, finalhandler(req, res))) server.listen(PORT, () => console.info(`Web UI running at: http://localhost:${PORT}`))