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.
smart-tag/db/connect.js

13 lines
294 B
JavaScript
Raw Normal View History

2021-03-12 11:55:16 +00:00
const mysql = require('mysql');
const config = require('../config');
2021-03-18 10:38:28 +00:00
let con = mysql.createConnection({
2021-05-13 07:46:46 +00:00
host: 'test-db.static.verdnatura.es', // 'test-db.verdnatura.es',
2021-03-18 10:38:28 +00:00
database: 'vn',
user: config.userDev,
password: config.passwordDev,
port: 3307
2021-03-12 11:55:16 +00:00
});
2021-03-18 10:38:28 +00:00
exports.con = con;