我在node.js中有项目。而这个主项目在私有bitbucket存储库的package.json中具有依赖性。所以问题是如何设置它可以在我的主机Heroku上部署的依赖?
答案 0 :(得分:0)
这个决定对我来说非常好
应用密码(Bitbucket) 应用程序密码主要用于提供与不支持双因素身份验证的应用程序的兼容性,您也可以将它们用于此目的。首先,create an app password,然后像这样指定你的依赖:
"dependencies" : {
"my-module": "git+https://<username>:<app-password>@bitbucket.org/my_bitbucket_account/my_repo.git"
}