Heroku Plug - This optional plan is only available to users.

I have a development application deployed to Heroku. I would like to shell out an application in order to create an intermediate environment.

Input heroku fork --from <app_name>-production --to <app_name>-staging Output Forking <app_name>-production... done. Forked to <app_name>-staging Setting buildpacks... done Adding newrelic:wayne to <app_name>-staging as NEW_RELIC... done Adding deployhooks:http to <app_name>-staging as DEPLOYHOOKS_HTTP... done Adding heroku-postgresql:standard-yanari to <app_name>-staging as HEROKU_POSTGRESQL_MAROON...! That add-on plan is only available to select users. There was an error forking to <app_name>-staging. 

I'm not sure if I need to upgrade the postgresql database or purchase an add-on through Heroku. Since I am a newbie and this is my application for the employer, I do not wish to make any changes that could lead to data loss. Thanks!

+5
source share
1 answer

I had a similar problem with a legacy "dev" plan, and the answer from Heroku support was ...

Sorry, this is a bit of a problem with older applications. Heroku-postgresql: dev plan is no longer available - this is heroku-postgresql: hobby-dev. You can either try pg: copy to move this application to hobby-dev, or use the --skip-pg flag to skip creating the database and install this part manually (you can pg: copy between applications using heroku pg:copy <source app>::<db name> DATABASE -a <target app> ).

Hope that helps

+8
source

All Articles