thing (conf): Running on a port that make sense

This commit is contained in:
Mickael KERJEAN 2018-04-18 21:17:52 +10:00
parent 8cd15af36c
commit d6f7ad34f2

View file

@ -12,7 +12,7 @@ app.use('/*', function (req, res){
res.sendFile(__dirname + '/public/index.html')
});
app.listen(3000, function(err){
app.listen(8334, function(err){
if(err){ console.log(err); }
else{ console.log("Running at Port 3000"); }
else{ console.log("Running: http://127.0.0.1:8334"); }
});