Heroku Error: Cannot find module './config/keys'

Heroku Error: Cannot find module './config/keys'

我部署了一个 Nodejs 应用程序,到目前为止它的后端到 Heroku。我在浏览器中收到应用程序错误。当我 运行 heroku logs 时,我看到这个错误:

Error: Cannot find module './config/keys'

所以我 运行 a heroku run 'ls -al' 我看到了这个:

Running ls -al on ⬢ murmuring-temple-46226... up, run.3327 (Free)
total 284
drwx------   8 u6811 dyno   4096 Apr 21 11:41 .
drwxr-xr-x  15 root  root   4096 Apr 18 13:09 ..
-rw-------   1 u6811 dyno     21 Apr 21 11:37 .gitignore
drwx------   3 u6811 dyno   4096 Apr 21 11:37 .heroku
drwx------   2 u6811 dyno   4096 Apr 21 11:37 .profile.d
-rw-------   1 u6811 dyno      0 Apr 21 11:37 @1
-rw-------   1 u6811 dyno    574 Apr 21 11:37 index.js
drwx------   2 u6811 dyno   4096 Apr 21 11:37 models
drwx------ 261 u6811 dyno  12288 Apr 21 11:38 node_modules
-rw-------   1 u6811 dyno 235090 Apr 21 11:37 package-lock.json
-rw-------   1 u6811 dyno    565 Apr 21 11:37 package.json
drwx------   2 u6811 dyno   4096 Apr 21 11:37 routes
drwx------   2 u6811 dyno   4096 Apr 21 11:37 services

我确实看到我的 config 文件夹不在顶部的文件和文件夹列表中,但这可能是因为在我的 .gitignore 文件中,我有它所以它会忽略keys.js 文件,还是我在代码库中引用错误?

这就是我在 index.js 中的要求:

const express = require('express');
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const passport = require('passport');
const keys = require('./config/keys');
require('./models/User');
require('./services/passport');

mongoose.connect(keys.mongoURI);

const app = express();

app.use(
  cookieSession({
    maxAge: 30 * 24 * 60 * 60 * 1000,
    keys: [keys.cookieKey]
  })
);
app.use(passport.initialize());
app.use(passport.session());

require('./routes/authRoutes')(app);

const PORT = process.env.PORT || 5000;
app.listen(PORT);

这就是我在 services/passport.js 中引用它的方式:

const passport = require('passport');
const GoogleStrategy = require('passport-google-oauth20').Strategy;
const mongoose = require('mongoose');
const keys = require('../config/keys');

const User = mongoose.model('users');

passport.serializeUser((user, done) => {
  done(null, user.id);
});

passport.deserializeUser((id, done) => {
  User.findById(id).then(user => {
    done(null, user);
  });
});

// passport.use() is a generic register to make Passport
// aware of new strategy
// creates a new instance to authenticate users
passport.use(
  new GoogleStrategy(
    {
      clientID: keys.googleClientID,
      clientSecret: keys.googleClientSecret,
      callbackURL: '/auth/google/callback'
    },
    (accessToken, refreshToken, profile, done) => {
      User.findOne({ googleId: profile.id }).then(existingUser => {
        if (existingUser) {
          // we already have a record with given profile id
          done(null, existingUser);
        } else {
          // we dont have a user record with this id, make a new record
          new User({ googleId: profile.id })
            .save()
            .then(user => done(null, user));
        }
      });
    }
  )
);

使用包含 API 密钥和其他凭据的 config/keys.js 文件夹文件结构将应用程序成功部署到 Heroku 的最佳实践是什么?

您通过忽略配置 file.You 来做正确的事情,应该始终远离 github 和 bitbucket 的密钥。在这种情况下,正确的方法是将您的密钥设置为 heroku 上的环境变量。您可以使用这些命令:

# Add new variable
heroku config:set COOKIE_KEY=somekey

# Remove variable
heroku config:unset COOKIE_KEY

# Get all environment variables
heroku config

# Get environment variable by name
heroku config:get COOKIE_KEY

在您的应用程序中,您可以使用 process.env 对象访问这些变量:

process.env.COOKIE_KEY
process.env.GOOGLE_CLIENT_ID
process.env.GOOGLE_CLIENT_SECRET

注意:配置键必须大写

我要做的是从您的 .gitignore 文件中删除 keys.js。在 config 文件夹中创建另外两个文件。一个用于开发,一个用于生产。将您的密钥放入开发文件,然后让 .gitignore 忽略该开发文件。

然后在您的 keys.js 文件中创建一个 if 语句,如下所示:

// keys.js - figure out what set of credentials to return
if (process.env.NODE_ENV === 'production') {
  // we are in production - return the prod set of keys
  module.exports = require('./prod');
} else {
  // we are in development - return the dev keys!!
  module.exports = require('./dev');
}

然后在您的生产文件中,您将按照我上面同事的建议进行操作,但可能更像这样:

// prod.js - production keys here
module.exports = {
  googleClientID: process.env.GOOGLE_CLIENT_ID,
  googleClientSecret: process.env.GOOGLE_CLIENT_SECRET,
  cookieKey: process.env.COOKIE_KEY
};

如果您还连接到像 MongoDB 这样的数据库,那么您还想像这样在上面添加它,mongoURI: process.env.MONGO_URI

您要做的最后一件事是确保在您的 Heroku 环境变量中定义了所有这些不同的环境变量。

所有这些设置都很简单,您只需要知道在 Herokus 的控制界面上的何处查看,或者按照我上面同事的建议通过命令行终端进行设置。如果您对命令行终端非常熟悉,请继续执行上述步骤,如果不是,请进入浏览器并导航至 dashboard.heroku.com

找到您为应用程序创建的应用程序,单击它。

然后单击设置选项卡,您应该会看到配置变量。单击 reveal Config Variables,这应该会为您提供一个界面来设置您要添加到应用程序中的所有不同变量。

你一个一个地添加一个键和它对应的值

因此,首先执行 GOOGLE_CLIENT_ID,复制它并将其作为密钥输入,然后获取您的凭据。您应该已经将凭据副本粘贴到某处。

COOKIE_KEY 执行相同操作,如果您使用的是 Mongo,`MONGO_URI

所以现在您可以隐藏配置变量,这样就不会有人看到它们了。

正如您想象的那样,您不希望任何人进入您的 heroku 帐户。如果有人进入你的 heroku 帐户,我不知道该告诉你什么。

现在您可以通过使用 git 提交代码来部署应用程序,也可以使用 git 进行部署。

执行 git status 显示您的文件和文件夹。

git add .

git commit -m “completed environment variables”

git push

git push heroku master

在错误消失的情况下,您应该可以继续执行此操作。