1

When deploying a node.js app to heroku, the following error pops up:

GitHub rate limit reached. To increase the limit use GitHub authentication. remote: Run jspm registry config github to set this up.

How can I login to github via heroku?

4

1 回答 1

0
  1. 创建 github 访问令牌
    • 转到 Github.com,登录,设置,个人访问令牌
  2. 创建个人访问令牌并复制它(我们稍后将使用它)

  1. $ heroku buildpacks:set https://github.com/ddollar/heroku-buildpack-multi.git
  2. 在项目根目录中创建一个 .buildpacks 文件 -> package.json 所在的位置
  3. 将以下构建包添加到其中并保存并提交
  4. $ heroku config:set GITHUB_AUTH_TOKEN=<Personal Auth Token>
  5. git push heorku deploy:master 或 git push heorku master
于 2015-05-29T10:18:40.187 回答