The fork is not heroic

I am trying to change the Heroku application region by following this official guide: https://devcenter.heroku.com/articles/app-migration .

The problem is that when I try to develop it at the very beginning, use: heroku fork --from sourceapp --to targetapp --region eu .

The return of Heroku cli:

  ! fork is not a heroku command. ! Perhaps you meant info ! Run heroku help for a list of available commands. 

I am using the latest Heroku Cli 6.15.18-fdf2097 on Windows 10

+8
git ruby-on-rails heroku heroku-cli
source share
1 answer

heroku-fork says

Heroku CLI Scheduler to deploy an existing application to a new application.

DEPRECATED: The Heroku plug has been deprecated as a core team. It will no longer be included in the CLI by default on 2017-12-01. See CLI Plugin Development for more information on plugin development.

You need to install the heroku-fork plugin

Installation

 heroku plugins:install heroku-fork 

See here for more details.

Hope this helps

+15
source share

All Articles