Can I clone someone else's heroku app into my Heroku account? if yes please give some hint/Doc
-
Is the person who owns the app willing to let you? – ChrisGPT was on strike Jan 16 '21 at 14:37
-
he is not active in any social media – Prashant Jan 17 '21 at 08:42
-
Is the source code published somewhere, and licensed such that you're allowed to use it? – ChrisGPT was on strike Jan 17 '21 at 13:59
-
@Chris yes i have – Prashant Feb 01 '21 at 09:56
-
"yes i have"... what? You have made contact with the owner of the app? – ChrisGPT was on strike Feb 01 '21 at 12:36
1 Answers
You can transfer applications between Heroku accounts or to a team of which you are a member at any time via the Heroku Dashboard or the Heroku CLI command apps:transfer.
Billing responsibility will transfer to the new owner as of the time of accepting the transfer and the original owner will be responsible for pro-rated usage up until that point. After the transfer is complete, the original owner will be a collaborator on the app.
To initiate the transfer of the application using the CLI, use apps:transfer:
heroku apps:transfer -a <app-to-transfer> <collaborator-to-transfer-it-to@example.com>
If you need to transfer multiple apps, use the --bulk flag:
heroku apps:transfer --bulk <collaborator-to-transfer-it-to@example.com>
To initiate the transfer of the application using the Dashboard:
In Dashboard, click the
Settings
tab of the application.Scroll down to the
Transfer Ownership
section.Click the
Select a new owner
field. The list of people who are collaborators on the app and the list of Teams and Organizations to which you belong will be displayed.If you don’t see the person you want to transfer the app to, then you must first add them as a collaborator. If you can’t see the team that you want to transfer the app to, then you must ask the team admin to add you to the team.
Select an item from the list.
Click
Transfer
.

- 3,579
- 5
- 21
- 29
-
sorry to say i'm not the owner of app, app owner is not active in social media. i want clone this app in my account, i want add some things in appp app link: https://github.com/voshawn/sessionize-cafe – Prashant Jan 17 '21 at 08:46