14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
const mysql = require("mysql2");
|
|
|
|
const pool = mysql.createPool({
|
|
host: "localhost",
|
|
user: "root",
|
|
database: "Marketplace",
|
|
});
|
|
|
|
// const pool = mysql.createPool(
|
|
// "singlestore://mann-619d0:<mann-619d0 Password>@svc-3482219c-a389-4079-b18b-d50662524e8a-shared-dml.aws-virginia-6.svc.singlestore.com:3333/db_mann_48ba9?ssl={}",
|
|
// );
|
|
|
|
module.exports = pool.promise();
|