https://github.com/jayhawk24/toodle-backend
https://github.com/jayhawk24/toodle-backend
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jayhawk24/toodle-backend
- Owner: jayhawk24
- License: apache-2.0
- Created: 2022-06-25T04:48:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T16:38:24.000Z (over 3 years ago)
- Last Synced: 2025-10-24T13:23:12.821Z (8 months ago)
- Language: Python
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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/)