代码拉取完成,页面将自动刷新
同步操作将从 howcode/HasChatService 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const mysql = require("mysql");
const db = mysql.createConnection({
host: "localhost",
user: "root",
password: "abc1234",
database: "haschat",
});
module.exports = {
emailConfig: {
//邮箱配置
host: "smtp.qq.com", //邮箱服务器 这里我用的QQ邮箱
port: 465, //邮箱使用端口
secure: true, //是否使用默认的465端口
auth: {
user: "", // 发送方邮箱地址
pass: "", // smtp 验证码
},
},
newUserConfig: {
Avatar: "https://howcode.online/photo/project/pSeEawD.jpg",
},
info: {
sucess: function (data, message = "") {
return {
state: true,
message,
data,
};
},
error: function (message = "") {
return {
state: false,
message,
};
},
},
db: db,
nowTime: function () {
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth();
const date = now.getDate() >= 10 ? now.getDate() : "0" + now.getDate();
const hour = now.getHours() >= 10 ? now.getHours() : "0" + now.getHours();
const miu =
now.getMinutes() >= 10 ? now.getMinutes() : "0" + now.getMinutes();
const sec =
now.getSeconds() >= 10 ? now.getSeconds() : "0" + now.getSeconds();
return (
+year +
"-" +
(month + 1) +
"-" +
date +
"- " +
hour +
":" +
miu +
":" +
sec
);
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。