Skip to content

Commit

Permalink
re-added config.php
Browse files Browse the repository at this point in the history
  • Loading branch information
EricBusch committed Apr 18, 2017
1 parent ec40374 commit 39b1d3a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.DS_Store
.idea
/config.php
.idea
26 changes: 26 additions & 0 deletions config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php

/**
* Define your Datafeedr API Access ID and Secret Key below.
*
* You can get your Datafeedr API Keys here:
* @link https://members.datafeedr.com/
*/
define( 'DATAFEEDR_ACCESS_ID', 'AVpHv2qzuVfC2Gqij762' );
define( 'DATAFEEDR_SECRET_KEY', 'oEfxiAGjrnfqi6GnrrsxEkcQ3unotyWvbTJ2dvBMUiKqNTKNaM2hfHJxX6kprCUr' );

/**
* Define your Amazon Product Advertising API keys below.
*
* Optional - This is only required if you are using the Datafeedr API
* to query the Amazon Product Advertising API.
*
* @link https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html
* @link https://affiliate-program.amazon.com/gp/advertising/api/detail/your-account.html
* @link https://affiliate-program.amazon.com/home
* @link http://docs.aws.amazon.com/AWSECommerceService/latest/DG/Locales.html
*/
define( 'AMAZON_ACCESS_KEY', 'BK9R8KYZMDACMDJWEDBN' );
define( 'AMAZON_SECRET_KEY', '8W4LB/PvdDR3YfvdDR3YfTDy87TPezq8PezqwaeA' );
define( 'AMAZON_ASSOCIATE_TAG', 'mysite-20' );
define( 'AMAZON_LOCALE', 'US' );

0 comments on commit 39b1d3a

Please sign in to comment.