nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

commit 82d05c6fb3b52a9651cf53a9f43dc97edd969ac5
parent eb96a2a95bcd1c1187a92290f5e164dc33f7723b
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 26 Mar 2016 12:02:30 +0100

Fix bug

Diffstat:
Mweb/server.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/server.js b/web/server.js @@ -30,7 +30,7 @@ var server = module.exports = {}; app.use('/css', express.static(__dirname + '/theme/css')); app.use('/js', express.static(__dirname + '/theme/js')); app.use('/fonts', express.static(__dirname + '/theme/fonts')); - http..listen((process.env.PORT || 5000), "0.0.0.0", function(){ + http.listen((process.env.PORT || 5000), "0.0.0.0", function(){ console.log('listening on *:3001'); }); },