Skip to content

Ngahu/dj_authkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dj Authkit (dj_authkit) 🔒

A Django app that provides a customizable, pluggable user authentication and management system.

Table of contents

Features

  • Django custom user model

Coming Soon Features

  • Auth views

Installation

using pip

pip install git+https://github.com/Ngahu/dj_authkit.git#egg=dj_authkit



using uv

uv add git+https://github.com/Ngahu/dj_authkit.git#egg=dj_authkit

Requirements

  • Python 3.9+
  • Django 5.0.0

Setup

Add the following to installed apps

from dj_authkit import DJ_AUTHKIT_APPS

INSTALLED_APPS = [
    ...
    *DJ_AUTHKIT_APPS,
    ...

]

or 

INSTALLED_APPS = [
    ...
    "dj_authkit.config.DjAuthkit",
    "dj_authkit.apps.accounts",
    ...

]

In your settings.py add the following;

from dj_authkit import DJ_AUTHKIT_AUTH_USER_MODEL

AUTH_USER_MODEL=DJ_AUTHKIT_AUTH_USER_MODEL

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors