Add http:// to demo output address

This makes it easy to launch the demo in a browser by right clicking the URL in
gnome-terminal
This commit is contained in:
Daniel Imms
2016-06-07 16:43:33 -07:00
parent 21d765b227
commit 47b01786e2
+1 -1
View File
@@ -45,5 +45,5 @@ app.ws('/bash', function(ws, req) {
var port = process.env.PORT || 3000,
host = '0.0.0.0';
console.log('App listening to ' + host + ':' + port);
console.log('App listening to http://' + host + ':' + port);
app.listen(port, host);