Skip to content

Instantly share code, notes, and snippets.

@lornajane
Created December 16, 2016 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lornajane/3f141da518d5713ed7536011bd72fc23 to your computer and use it in GitHub Desktop.
Save lornajane/3f141da518d5713ed7536011bd72fc23 to your computer and use it in GitHub Desktop.
if(isset($_ENV['VCAP_SERVICES'])) {
$vcap_services = json_decode($_ENV['VCAP_SERVICES'], true);
$config['couchdb']['url'] = $vcap_services['cloudantNoSQLDB'][0]['credentials']['url'];
} else {
$config['couchdb']['url'] = "http://localhost:5984";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment