This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
2021-03-12 11:55:16 +00:00
|
|
|
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,
|
2021-03-12 15:58:15 +00:00
|
|
|
port: 3307
|
2021-03-12 11:55:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
exports.con = con;
|