From 255e3bdd20232377d487e0b13f95395915fefb6c Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 22 Apr 2015 15:52:12 -0400 Subject: [PATCH] default is 4567 instead of 8080 --- install/web.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/web.js b/install/web.js index af9db0a9da..f86feddaad 100644 --- a/install/web.js +++ b/install/web.js @@ -21,7 +21,7 @@ var web = {}, ]; web.install = function(port) { - port = port || 8080; + port = port || 4567; winston.info('Launching web installer on port', port); app.use(express.static('public', {})); @@ -99,6 +99,7 @@ function launch(req, res) { res.json({}); server.close(); + require('child_process').fork('app', [], {}); } function compileLess(callback) {