Life has taken me to now work in GO, and do not have the time to actively maintain this project.
Which means this project is looking for new maintainer, please open an issue and postulate yourself if interested.
Django use Email as UsernameA Django app to use email as username for user authentication.
Install Django use Email as Username:
# Run in your terminal pip install django-use-email-as-username
Add it to your INSTALLED_APPS:
# In your settings.py file INSTALLED_APPS = ( ... 'django_use_email_as_username.apps.DjangoUseEmailAsUsernameConfig', ... )
Create your new django app:
# Run in your terminal python manage.py create_custom_user_app
Add the new app to your INSTALLED_APPS:
# In your settings.py file INSTALLED_APPS = ( ... 'django_use_email_as_username.apps.DjangoUseEmailAsUsernameConfig', 'custom_user.apps.CustomUserConfig', ... )
Now instruct Django to use your new model:
# In your settings.py file AUTH_USER_MODEL = 'custom_user.User'
Create and run migrations:
# Run in your terminal python manage.py makemigrations python manage.py migrate
You now have a new Django app which provides a custom User model.
You can further modify the new User Model any time in the future, just remember to create and run the migrations.
This app gives you a custom User model, which is good practice for new Django projects.
Changing to a custom user model mid-project is not easy.
It is recommended to always create a custom User model at the beginning of every Django project.
Tools used in rendering this package:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4