To run this example:
- Map your loop back 127.0.0.1 ip address to dev.example.com
- Obtain client ids and secrets from OAuth providers you want to integrate
- Put them in the
website/settings.py
in theSOCIAL_BLUEPRINT
settings - Install package dependencies
- Run app engine development server
- Open http://dev.example.com:5055 your browser
The way you deploy apps to GAE you need to get everything you need inside a project directory and import all the dependencies as local modules.
Tp simplify things a little we can install requirements into a special lib
folder within a project directory,
then during application startup we'll put this folder on sys.path
Install packages here with:
pip install --target=./lib -r requirements.txt
Or on windows:
pip install --target=.\lib -r requirements.txt