updated build.js to no longer use db.js - commenting out no longer required
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user