This application will let users put in their birthdays and keep this “secret” information safe for them. With these basics in place, you’ll see how FusionAuth works and how it can extend the application to do whatever you need. The application will also let users sign-in using their google account. You can read the detailed blog post here: https://fusionauth.io/blog/2020/07/14/django-and-oauth/
You need to make sure FusionAuth is running and that you have python3/pip3 available.
virtualenv sb-envsource sb-env/bin/activatepip3 install django dateparser fusionauth-client pkcedjango-admin startproject secretbirthdayscd secretbirthdayspython3 manage.py startapp secretbirthdaysapppython3 manage.py makemigrationspython3 manage.py migratepython3 manage.py runserver
To run this: python3 manage.py runserver
- @sixhobbits from https://ritza.co for the initial implementation.