14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
const mysql = require('mysql2/promise');
|
|
|
|
const pool = mysql.createPool({
|
|
host: "192.168.88.134",
|
|
user: "bxio_loginn",
|
|
password: "MasterOKEM#1",
|
|
database: "bxio_discord",
|
|
waitForConnections: true,
|
|
connectionLimit: 10,
|
|
queueLimit: 0
|
|
});
|
|
|
|
// Exporta o pool para ser usado com conn.query(...)
|
|
module.exports = pool; |