updated build.js to no longer use db.js - commenting out no longer required

This commit is contained in:
2020-01-06 10:54:01 -05:00
parent 78ae7f3a03
commit 1febc5c52a

View File

@ -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) { con.connect(function(err) {
if (err) throw err; if (err) throw err;