17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
const mysql = require('mysql');
|
|
const config = require('../config');
|
|
|
|
var con = mysql.createConnection({
|
|
host: "test-db.verdnatura.es",
|
|
database: "vn",
|
|
user: config.userDev,
|
|
password: config.passwordDev,
|
|
port: 3307,
|
|
});
|
|
|
|
con.connect(function(err) {
|
|
if (err) throw err;
|
|
console.log("Connected!");
|
|
});
|
|
|
|
exports.con = con; |