Documentation
Installation
Install Authkits and get authentication running in your Django application within minutes.
Requirements
- • Python 3.11+
- • Django 5+
- • PostgreSQL (recommended)
- • Redis (optional)
Install Authkits
Terminal
pip install authkits
Add to Installed Apps
settings.py
settings.py
1
2
3
INSTALLED_APPS = [
"...", "authkits",
]Run Migrations
python manage.py migrate
Start Development Server
python manage.py runserver
Next Steps
Configure MFA, audit logs, and rate limiting.
Configuration