FREEPL is a online fantasy cricket game where the player gets to create a team according to the live matches going on around the world.
The player at the end with highest total stocks and cash wins the game.
Create a virtual environment with virtualenv (install virtualenv, if its not installed).
virtualenv freepl
Clone the project in the virtual environment directory.
cd freepl
git clone https://github.com/lugnitdgp/freepl_main.git
Activate the virtual environemnt.
source bin/activate
.\Scripts\activate
Install the requirements.
cd freepl_main
pip install -r requirements.txt
Copy the settings.py.example file in the freepl_main directory to settings.py and add an arbitrary secret key in the settings.py file.
cd freepl_main
cp settings.py.example settings.py
cd ..
Open the settings.py file and add an arbitary secret key.
Generate Google+ OAuth credentials with the following steps:
Go to Google developer console
Create a new project if you do not have any (see the drop-down at the top left of your screen).
After the project is created you will be redirected to a dashboard. Click on ENABLE API button.
Select Google+ API from the Social APIs section.
On the next page, click the Enable button to enable Google+ API for your project.
To generate credentials, select the Credentials tab from the left navigation menu and hit the ‘Create Credentials’ button.
From the drop-down, select OAuth client ID.
On the next screen, select the application type (web application in this case) and enter your authorized javascript origins and redirect uri. For now, just set the origin as http://localhost:8000 and the redirect URI as http://localhost:8000/complete/google-oauth2/
Now, go to settings.py
and add your OAuth credentials like this:
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = <client ID>
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = <client secret>
Generate Facebook login credentials with the following steps:
Click on My Apps and then Add a New App.
Enter Display Name and Contact Email and click on Create App Id.
Select Facebook login and choose set up. Pick Web on the next page.
Enter http://localhost:8000
as the Site Url and hit Save.
Now go to Settings/Basic and then in the App Domains just put localhost
and hit Save Changes.
Grab the App ID and App Secret and add them to settings.py
likethis:
SOCIAL_AUTH_FACEBOOK_KEY = <app ID>
SOCIAL_AUTH_FACEBOOK_SECRET = <app secret>
Migrate your database and run the Django Development Server.
./manage.py makemigrations
./manage.py migrate
./manage.py runserver
Open the python shell (preferably in another terminal) using:
python manage.py shell
Then for adding matches first execute step1.py THEN step2(...).py to load the .csv (which should be made as in the repository) file using:
exec(open("FILE_NAME.py").read())
Exit the shell using:
exit()
Open http://localhost:8000
in your browser. (Opening http://127.0.0.1:8000
will cause problems with Social Login)
FreePL uses the following technologies:
git clone https://github.com/[username]/freepl_main.git
git branch mybug
git checkout mybug
git add --all
git commit
and provide a commit message.git push origin mybug
There should be only one commit per pull request.
Please try to make sure that your commit message and body follows the guidelines below.
Fixes issue #[issue_number] - what you solved in one line
Please try to follow this format as it will be helpul for maintainers as well as co-developers/contributors to stay aligned.