使用 bitbucket repo 部署到 heroku

Deploying to heroku using bit bucket repo

我目前在 bitbucket 上有一个私人仓库,我想将其部署到 heroku。

一直在四处寻找,但发现很难找到任何相关信息。

谁能帮忙

谢谢

与 GitHub 或 GitLab 相比,您将存储库托管在 BitBucket 上这一事实没有任何区别。

只需关注 Heroku 的 deploying with Git 支持页面即可。

您只需创建应用程序(除非您有):

$ heroku create

那时你应该有 Heroku git 远程 URL:

$  git remote -v

然后你可以部署:

$ git push heroku master

请务必阅读我链接的文章,因为它包含更详细的解释。