Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
removing keys and updating .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi Yusuf committed Jan 6, 2012
2 parents ecc25a7 + 1ca2645 commit fef640b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,4 +1,5 @@
*.pyc
*.db
.DS_Store

courtside/keys/keys.py
keys.py
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -12,14 +12,14 @@ Installation

- To install requirements::

$ pip install -r requirements
$ pip install -r requirements.txt

- You will need to create a keys file in the register app for the twitter and fb app keys
- You will need to create a keys file in keys module for the twitter and fb app keys, ones there are old and note used.

.. image:: https://s3.amazonaws.com/screenshots.angel.co/ee/29287/ad7528fee77bb37dcbb4bea439dc5bae-original.png

=============
Contributions
=============

All software contributions are welcome and encouraged.
All software contributions are welcome and encouraged.
13 changes: 13 additions & 0 deletions courtside/keys/keys.py
@@ -0,0 +1,13 @@
from django.conf import settings


if settings.DEBUG is False:
#facebook information
FACEBOOK_APP_ID = '125675444184887'
FACEBOOK_API_KEY = '125675444184887'
FACEBOOK_APP_SECRET = '6ea513bf09efe971bdd533b8c853c82b'


#twitter information
CONSUMER_KEY = 'WSKcN7DBwH88GkZc2wT24g'
CONSUMER_SECRET = 'VF1eDbszUthnUrMy3693dU2iSWCK4qQBfvmreCXdhGU'

0 comments on commit fef640b

Please sign in to comment.