1 Star 0 Fork 94

yrynb/HasChatService

forked from howcode/HasChatService 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
howcode 提交于 2022-03-18 16:02 . add:免责声明
const mysql = require("mysql")
const db = mysql.createConnection({
host: "localhost",
user: "root",
password: "abc123",
database: "haschat"
})
module.exports = {
emailConfig: { //邮箱配置
host: "smtp.qq.com",//邮箱服务器 这里我用的QQ邮箱
port: 465,//邮箱使用端口
secure: true,//是否使用默认的465端口
auth: {
user: "1051495009@qq.com", // 发送方邮箱地址
pass: "blhdjrenzsudbdfg" // smtp 验证码
}
},
newUserConfig: {
Avatar: "https://vkceyugu.cdn.bspapp.com/VKCEYUGU-e9420bcd-26cd-4faf-b47a-9949982f7c41/04727b70-da9d-4923-9d38-20ec565f71c3.jpeg",
},
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;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yrynb/has-chat-service.git
git@gitee.com:yrynb/has-chat-service.git
yrynb
has-chat-service
HasChatService
main

搜索帮助