1 Star 0 Fork 94

高乐康/HasChatService

forked from howcode/HasChatService 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
howcode 提交于 2023-10-11 17:15 . feat:修改默认头像路径
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
);
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gao-lekang/has-chat-service.git
git@gitee.com:gao-lekang/has-chat-service.git
gao-lekang
has-chat-service
HasChatService
main

搜索帮助