diff --git a/.gitignore b/.gitignore index 73d1be9..9b402d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.pyc *.db .DS_Store - +courtside/keys/keys.py +keys.py diff --git a/README.rst b/README.rst index f0e28aa..af97fe3 100644 --- a/README.rst +++ b/README.rst @@ -12,9 +12,9 @@ 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 @@ -22,4 +22,4 @@ Installation Contributions ============= -All software contributions are welcome and encouraged. \ No newline at end of file +All software contributions are welcome and encouraged. diff --git a/courtside/keys/keys.py b/courtside/keys/keys.py new file mode 100644 index 0000000..3856ca2 --- /dev/null +++ b/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' \ No newline at end of file