Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed Jan 18, 2017
1 parent ab3714e commit 34401e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ var mysql = require("mysql");
var pool = mysql.createPool({
connectionLimit: 100, //important
host: 'localhost',
user: 'php-crud-api',
password: 'php-crud-api',
database: 'php-crud-api',
user: 'js-crud-api',
password: 'js-crud-api',
database: 'js-crud-api',
charset: 'utf8',
debug: false
});
Expand Down Expand Up @@ -124,4 +124,4 @@ var server = http.createServer(withDb(withBody(function (req, resp) {

})));

server.listen(8000);
server.listen(8000);

0 comments on commit 34401e6

Please sign in to comment.