Does the dev portal connection work if I push local database to pantheon?

I have taken a copy from the Pantheon Dev to start the development. I'm prepared to do an initial release.

I would like to know if I can push the local database and code to Pantheon Dev as this is an initial release and still see the application working with apigee edge (like app create/edit/delete). My concern is about the connection between Dev portal and Apigee edge. Is it going to work or not is the only question? It should ideally work as far as I know. As I don't have the connecting credentials, I don't want to push and then regret while waiting for support to fix it.

I know that I should be using features and update hooks as I go on releasing the config changes.

Solved Solved
0 3 223
1 ACCEPTED SOLUTION

@Kiran Devarapalli ,

I have never tried. Even if it breaks, You can update connection settings using drush. For more detail, Please refer drush commands by typing drush help inside your developer portal root. You can find commands below to update connection settings.

Pre Req :

Set EndPoint..

drush @pantheon.SITENAME.ENV dc-setend http://YOUREDGEAPIENDPOINT:PORT

If you are on Cloud,

drush @pantheon.SITENAME.ENV dc-setend https://api.enterprise.apigee.com/v1

Set Org

drush @pantheon.SITENAME.ENV dc-setorg YOURORGNAME

Set Credentials

drush @pantheon.SITENAME.ENV devconnect-set-auth XXXXXXXX@domain.com --password=YOURPASSWORD

Hope it helps.

View solution in original post

3 REPLIES 3

@Anil Sagar Can you please help with this query?

@Kiran Devarapalli ,

I have never tried. Even if it breaks, You can update connection settings using drush. For more detail, Please refer drush commands by typing drush help inside your developer portal root. You can find commands below to update connection settings.

Pre Req :

Set EndPoint..

drush @pantheon.SITENAME.ENV dc-setend http://YOUREDGEAPIENDPOINT:PORT

If you are on Cloud,

drush @pantheon.SITENAME.ENV dc-setend https://api.enterprise.apigee.com/v1

Set Org

drush @pantheon.SITENAME.ENV dc-setorg YOURORGNAME

Set Credentials

drush @pantheon.SITENAME.ENV devconnect-set-auth XXXXXXXX@domain.com --password=YOURPASSWORD

Hope it helps.

Thank you very much for your prompt response.