Updated dbConfig.js file to separate logic from email engine

This commit is contained in:
rota3015
2024-05-05 01:24:59 +00:00
parent 513cf89e3a
commit e08aeee91b

View File

@ -1,37 +1,17 @@
// dbConfig.js // dbConfig.js
const mysql = require('mysql'); const mysql = require('mysql');
const nodemailer = require('nodemailer');
const transporter = nodemailer.createTransport({
host: process.env.CLOUDRON_MAIL_SMTP_SERVER, // Replace with your email server host
port: process.env.CLOUDRON_MAIL_SMTP_PORT, // Replace with your email server port
secure: false, // false for non-SSL, true for SSL/TLS
auth: {
user: process.env.CLOUDRON_MAIL_SMTP_USERNAME, // Replace with your email username
pass: process.env.CLOUDRON_MAIL_SMTP_PASSWORD // Replace with your email password
},
});
const connection = mysql.createConnection({ const connection = mysql.createConnection({
host: 'localhost', host: process.env.CLOUDRON_MYSQL_HOST,
user: 'root', user: process.env.CLOUDRON_MYSQL_USERNAME,
password: 'your_new_password1!Q', port: process.env.CLOUDRON_MYSQL_PORT,
database: 'community_rule', password: process.env.CLOUDRON_MYSQL_PASSWORD,
database: process.env.CLOUDRON_MYSQL_DATABASE,
}); });
// const mysql = require('mysql2');
// const connection = mysql.createConnection({
// host: 'localhost',
// user: 'root',
// password: 'your_mysql_password',
// database: 'your_database_name',
// });
connection.connect((err) => { connection.connect((err) => {
if (err) throw err; if (err) throw err;
console.log('Connected to the database'); console.log('Connected to the database');
}); });
module.exports = connection, transporter; module.exports = connection;