X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fui%2Fweb%2Fstart.js;h=ed6e3e01ff65c0f81696ba9805a5b622f8c5169c;hb=bd770ddec2df168952038892f54799c62bb57bc7;hp=0078cb5e6d0cb2a1364ec8a145f21f6a486bf241;hpb=efdd19228b996d429acfdef7e929baa4fa3f9d81;p=e-mobility-charging-stations-simulator.git diff --git a/src/ui/web/start.js b/src/ui/web/start.js index 0078cb5e..ed6e3e01 100644 --- a/src/ui/web/start.js +++ b/src/ui/web/start.js @@ -3,7 +3,8 @@ const path = require('path'), http = require('http'), serveStatic = require('serve-static'); -const PORT = process.env.PORT || 3030, +const isCFEnvironment = process.env.VCAP_APPLICATION !== undefined, + PORT = isCFEnvironment ? parseInt(process.env.PORT) : 3030, uiPath = path.join(__dirname, './dist'); const serve = serveStatic(uiPath);