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.
2022-03-31 09:44:35 +00:00
|
|
|
const mysql = require('mysql2/promise');
|
2021-03-12 11:55:16 +00:00
|
|
|
const config = require('../config');
|
|
|
|
|
2022-03-31 09:44:35 +00:00
|
|
|
module.exports = mysql.createPool({
|
2022-02-07 12:46:04 +00:00
|
|
|
user: config.db.user,
|
|
|
|
password: config.db.password,
|
2022-02-07 11:58:08 +00:00
|
|
|
host: config.db.host, // 'test-db.verdnatura.es',
|
2021-11-23 11:46:45 +00:00
|
|
|
port: config.db.port,
|
|
|
|
database: config.db.database,
|
2021-05-13 13:29:53 +00:00
|
|
|
insecureAuth: true
|
2021-03-12 11:55:16 +00:00
|
|
|
});
|