Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kushaldas/mfaforgood
https://github.com/kushaldas/mfaforgood
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kushaldas/mfaforgood
- Owner: kushaldas
- License: mit
- Created: 2024-07-26T14:12:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-07T18:31:30.000Z (3 months ago)
- Last Synced: 2024-08-07T21:55:19.525Z (3 months ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Multi-factor authentication in Django
This is an example project show casing how to enable [Multi-factor
authentication (MFA)](https://en.wikipedia.org/wiki/Multi-factor_authentication) in a Django
web application. One can use TOTP based phone applications or hardware token
(say Yubikey) for this example project.## Install / Usage
```sh
python -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
./manage.py migrate
./manage.py createsuperuser
./manage.py runserver
```Then visit the [home page](http://localhost:8000/).