https://github.com/fusionauth/fusionauth-example-python-django
https://github.com/fusionauth/fusionauth-example-python-django
django example fusionauth python
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fusionauth/fusionauth-example-python-django
- Owner: FusionAuth
- Created: 2020-06-24T12:01:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-28T05:55:33.000Z (over 1 year ago)
- Last Synced: 2024-07-28T06:45:49.499Z (over 1 year ago)
- Topics: django, example, fusionauth, python
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 5
- Watchers: 13
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# secret-birthdays
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/
## Prerequisites
You need to make sure FusionAuth is running and that you have python3/pip3 available.
## Setup
* `virtualenv sb-env`
* `source sb-env/bin/activate`
* `pip3 install django dateparser fusionauth-client pkce`
* `django-admin startproject secretbirthdays`
* `cd secretbirthdays`
* `python3 manage.py startapp secretbirthdaysapp`
* `python3 manage.py makemigrations`
* `python3 manage.py migrate`
* `python3 manage.py runserver`
## Running
To run this: `python3 manage.py runserver`
# Credits
* [@sixhobbits](https://github.com/sixhobbits) from [https://ritza.co](https://ritza.co) for the initial implementation.