1

Can I clone someone else's heroku app into my Heroku account? if yes please give some hint/Doc

Prashant
  • 21
  • 3

1 Answers1

0

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:

  1. In Dashboard, click the Settings tab of the application.

  2. Scroll down to the Transfer Ownership section.

  3. 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.

  4. 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.

  5. Select an item from the list.

  6. Click Transfer.

İsmail Y.
  • 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