Meteor:process.env.MAIL_URL敏感信息



我正在为我的流星应用程序发送电子邮件验证,但我也在将该应用程序上传到github。我有以下代码:

if (Meteor.isServer) {
// This code only runs on the server
Meteor.startup(function () {
    // code to run on server at startup
    process.env.MAIL_URL = "smtp://" +
        encodeURIComponent("myUsernameIsHere") + ":" +
        encodeURIComponent("myPasswordIsHere") + '@' +
        encodeURIComponent("smtp.gmail.com") + ":" + 465;
    ..
    ..
    ..
}

有没有办法让我的用户名和密码在代码中是私有的,这样它就不能在我的公共github帐户上查看?

感谢

是的,您只需在gitignore文件中添加一个即可。https://git-scm.com/docs/gitignore

你可能值得拥有一个文件或目录,其中包含你忽略的整个应用程序的敏感信息(密钥、密码)。

相关内容

  • 没有找到相关文章

最新更新