An open API service indexing awesome lists of open source software.

https://github.com/jayhawk24/toodle-backend


https://github.com/jayhawk24/toodle-backend

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Authentication with django-rest framework

## INIT Commands
- `pipenv install`
- `python manage.py makemigrations`
- `python manage.py migrate`

### TODOs
- [x] Login & registration support
- [x] Support for password reset, password change, verify user, etc.
- [x] Return JWT token instead of default token
- [x] Facebook login support
- [x] GitHub login support
- [ ] Add support for Google login
- [ ] Dockerize the django project
- [ ] Connect the backend with a custom frontent and built a demo site

## Packages Used
- `dj-rest-auth` : [documentation](https://dj-rest-auth.readthedocs.io/en/latest/introduction.html)
- `dj-rest-auth[with_social]` : [lookup this](https://dj-rest-auth.readthedocs.io/en/latest/installation.html#registration-optional)
- `djangorestframework-simplejwt` : [documentation](https://django-rest-framework-simplejwt.readthedocs.io/en/latest/)
- `djangorestframework` : [documentation](https://www.django-rest-framework.org/)