Skip to content

testdrivenio/django-social-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Adding Social Authentication to Django

Want to learn how to build this?

Check out the post.

Want to use this project?

  1. Fork/Clone

  2. Create and activate a virtual environment:

    $ python3 -m venv venv && source venv/bin/activate
  3. Install the requirements:

    (venv)$ pip install -r requirements.txt
  4. Apply the migrations and create a superuser:

    (venv)$ python manage.py migrate
    (venv)$ python manage.py createsuperuser
  5. Create OAuth apps on GitHub and Twitter.

  6. Register the providers in the Django admin.

  7. Run the server:

    (venv)$ python manage.py runserver