This is a sample Django App which is used to store Customer Details (Refer Master Branch)
Admin view supports Adding, Deleting, Updating, Viewing Single and All Customer records Customer view supports only viewing their individual record
-
Create Virtual Environment and Activate it virtualenv myvirtual myvirtual/scripts/activate
-
Install the packages using requirements.txt in the App pip install -r .\requirements.txt
-
python .\manage.py makemigrations
-
python .\manage.py migrate
-
python .\manage.py createsuperuser (To create SuperUser Account)
-
python .\manage.py runserver
-
Log into Django Admin using superuser account -> Create a Group called "Customer" Address - http://127.0.0.1:8000/Admin
-
Log into Application (Admin View) via superuser account created above Address - http://127.0.0.1:8000/home
-
Log in Application (Customer View) using CustomerID created and the Password "Customer@123" Address - http://127.0.0.1:8000/home
Developer - K.Janarthanan