mcurry / cakephp_datasource_discogs

This URL has Read+Write access

name age message
file README Loading commit data...
file discogs.test.php
file discogs_source.php
README
/*
 * Discogs Datasource for CakePHP
 * Copyright (c) 2008 Matt Curry
 * www.PseudoCoder.com
 * http://github.com/mcurry/cakephp/tree/master/datasources/discogs
 *
 * @author      mattc <matt@pseudocoder.com>
 * @license     MIT
 *
 */
 
/* About */
This is a datasource for accessing the discogs.com API.
For more information and to get an API key go to http://www.discogs.com/help/api

/* Notes */
  * The datasource is a bit geared toward my particular application and will likely
  need some changes to generalize some of the methods.
  * I ended up dropping Discogs as a datasource, because I found the data somewhat
  unreliable.  Just a warning.
  
/* Instructions */
  * Sign up for an API key at the discogs site.
  * Configure the datasource in your /app/config/database.php file:
    var $music = array(
      'datasource' => 'discogs',
      'apiKey' => 'APIKEYHERE'
    );