Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 508 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 508 Bytes

django-custom-user

Create Custom User Model and Authentication in Django.

Getting Started

Prerequisities

  • Python >= 3.5.2
  • Virtualenv

Installing

git clone https://github.com/mdrkb/django-custom-user.git
cd django-custom-user
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
cd django_user
python manage.py makemigrations
python manage.py migrate

Running Django Server

python manage.py runserver

Open browser and go to http://127.0.0.1:8000.