I am working on an existing rails project that is deployed on a hero. I am trying to create an intermediate server that is being deployed from an intermediate branch. (the master is currently deploying for production).
I follow this page http://devcenter.heroku.com/articles/multiple-environments#starting_with_a_production_app
and I'm in the “Starting with a production application” section. The code he gives is
heroku create --stack [production stack] --remote staging --addons newrelic:bronze,logging:expanded
I am trying to adapt this to my own needs, but getting the message back Resource not found .
That's what I get for "heroku apps"
custom_domains:basic exceptional:basic logging:expanded shared-database:5mb
If I make a heroku list , I get this
buddystef <project manager email> vivid-window-286 vivid-earth-537
where "buddystef" is the production version of the application. So I'm trying to do this:
heroku create --stack [buddystef stack] --remote buddy-staging --addons custom_domains:basic,exceptional:basic,logging:expanded,shared-database:5mb
And I get Resource not found
Do I need to first create a separate git repository for the intermediate branch? If so, what is the best way to do this?
Grateful for any advice - max
EDIT - The message "Resource not found" seems (after googling) to be associated with logging in with incorrect credentials. But I log in as the owner of the buddystef project.