hyunjong

port changed

Showing 1 changed file with 2 additions and 3 deletions
......@@ -44,7 +44,7 @@ connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : 'password',
port : 3306,
port : 9000,
database : 'YTMT'
});
......@@ -81,6 +81,5 @@ app.use(function(err, req, res, next) {
res.render('error');
});
var server = app.listen(3000);
var server = app.listen(9000);
module.exports = app;
......