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

12 lines
316 B
JavaScript
Raw Normal View History

const mysql = require('mysql2/promise');
2021-03-12 11:55:16 +00:00
const config = require('../config');
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',
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
});