adding a bit of logging when launching NodeBB from the web installer

This commit is contained in:
Julian Lam
2015-05-24 10:39:52 -04:00
parent 349de1694d
commit b2f2561e74

View File

@@ -103,6 +103,9 @@ function launch(req, res) {
stdio: ['ignore', 'ignore', 'ignore']
});
process.stdout.write('\nStarting NodeBB\n');
process.stdout.write(' "./nodebb stop" to stop the NodeBB server\n');
process.stdout.write(' "./nodebb log" to view server output\n');
child.unref();
process.exit(0);