1

我正在为我的流星应用程序发送电子邮件验证,但我也在将应用程序上传到 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 帐户上查看?

谢谢

4

1 回答 1

1

是的,您只需在gitignore文件中添加内容。https://git-scm.com/docs/gitignore

对于您来说,拥有一个包含您忽略的整个应用程序(密钥、密码)的敏感信息的文件或目录可能是值得的。

于 2015-11-07T19:41:45.480 回答