some more logging

This commit is contained in:
barisusakli
2015-09-02 18:17:58 -04:00
parent 9cf71d460a
commit 54f9a09e6a
2 changed files with 9 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ web.install = function(port) {
app.set('views', path.join(__dirname, '../src/views'));
app.use(bodyParser.urlencoded({
extended: true
}));
}));
async.parallel([compileLess, compileJS], function() {
setupRoutes();
@@ -78,6 +78,8 @@ function install(req, res) {
}
}
winston.info('running nodebb setup with env ', process.env);
var child = require('child_process').fork('app', ['--setup'], {
env: process.env
});
@@ -107,10 +109,10 @@ function launch(req, res) {
process.stdout.write(' "./nodebb stop" to stop the NodeBB server\n');
process.stdout.write(' "./nodebb log" to view server output\n');
process.stdout.write(' "./nodebb restart" to restart NodeBB\n');
child.unref();
process.exit(0);
}
function compileLess(callback) {