README.md in berkshelf-api-1.4.0 vs README.md in berkshelf-api-2.0.0

- old
+ new

@@ -89,18 +89,33 @@ ## Configuring Endpoints You may configure the endpoints to index by editing the JSON configuration file (default: `#{ENV['HOME']}/.berkshelf/api-server/config.json`). -### Opscode Community Site +### Supermarket Community Site -````json +Please note: this is unnecessary. You may point your Berksfile at "https://supermarket.getchef.com" instead. + +```json { "endpoints": [ + { "type": "supermarket" } + ] +} +``` + +### Supermarket "Behind the Firewall" + +Please note: this is unnecessary. You may point your Berksfile at "https://your-supermarket-install.example.com" instead. + + +```json +{ + "endpoints": [ { - "type": "opscode", + "type": "supermarket", "options": { - "url": "http://cookbooks.opscode.com/api/v1" + "url": "https://your-supermarket-install.example.com/" } } ] } ```