15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
|
|
const mysql = require('mysql2/promise');
|
||
|
|
|
||
|
|
const pool = mysql.createPool({
|
||
|
|
host: 'localhost',
|
||
|
|
user: 'root',
|
||
|
|
password: '',
|
||
|
|
database: 'yomitrack',
|
||
|
|
port: 3306,
|
||
|
|
waitForConnections: true,
|
||
|
|
connectionLimit: 10,
|
||
|
|
queueLimit: 0
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = pool;
|