Skip to content

Commit

Permalink
Adding Config file
Browse files Browse the repository at this point in the history
  • Loading branch information
webtechnick committed Nov 6, 2011
1 parent 0aec231 commit 7329bc1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Config/facebook.php.example
@@ -0,0 +1,15 @@
<?php
/**
* Get an api_key and secret from facebook and fill in this content.
* save the file to app/Config/facebook.php
*/
$config = array(
'Facebook' => array(
'appId' => 'YOUR_APP_ID',
'apiKey' => 'YOUR_API_KEY',
'secret' => 'YOUR_SECRET',
'cookie' => true,
'locale' => 'en_US',
)
);
?>

0 comments on commit 7329bc1

Please sign in to comment.