I put my custom user model inside a package I also included it on the init.py
But I am getting this error
##################################
Custom Auth Model
AUTH_USER_MODEL = ‘authentication.CustomUserModel’
File “D:\WORK\rentermade\Branches\Test2\RenterMade.com\authentication\models_init_.py”, line 2, in
from .base import Base
File “D:\WORK\rentermade\Branches\Test2\RenterMade.com\authentication\models\base.py”, line 4, in
User = get_user_model()
^^^^^^^^^^^^^^^^
File “C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\contrib\auth_init_.py”, line 164, in get_user_model
raise ImproperlyConfigured(
django.core.exceptions.ImproperlyConfigured: AUTH_USER_MODEL refers to model ‘authentication.CustomUserModel’ that has not been installed
PS D:\WORK\rentermade\Branches\Test2\RenterMade.com>