我使用了https://github.com/errbit/errbit的 Heroku 按钮上的部署。
工作了很长时间(版本 0.7.0-dev),现在我收到了来自 GitHub 的弃用警告:
[GitHub API] 通过 URL 查询参数进行身份验证的弃用通知
https://github.com/errbit/errbit#upgrading上的说明似乎不适用于 Heroku。
我使用了https://github.com/errbit/errbit的 Heroku 按钮上的部署。
工作了很长时间(版本 0.7.0-dev),现在我收到了来自 GitHub 的弃用警告:
[GitHub API] 通过 URL 查询参数进行身份验证的弃用通知
https://github.com/errbit/errbit#upgrading上的说明似乎不适用于 Heroku。
似乎升级的方法是 git clone errbit 在您要运行的标记发布版本,然后使用 heroku 命令行工具为您的 heroku 应用程序添加 git 远程。从那时起,您将通过推送到 heroku 遥控器来管理升级。
这是一个粗略的指南,但您需要对 git 和 heroku 命令行工具有所了解。
git clone git@github.com:errbit/errbit.git
cd errbit
heroku git:remote -a your-app-name
git push heroku origin/v0.9.0:master
另请参阅https://devcenter.heroku.com/articles/git#for-an-existing-heroku-app