diff --git a/database/build.js b/database/build.js index ca57609..394e779 100644 --- a/database/build.js +++ b/database/build.js @@ -1,4 +1,11 @@ -var con = require('./db'); +var mysql = require('mysql'); + +// This information is only used for testing - change to production before deploying +var con = mysql.createConnection({ + host: "localhost", + user: "root", + password: "root" +}); con.connect(function(err) { if (err) throw err;