Customer Management System
Customer Management System is a backend project made with the help of Python Django Framework.
Django is a free and open-source web framework written in Python. It is designed to help developers take applications from concept to completion as quickly as possible. Django follows the model-template-view architectural pattern.
This project stores customers information in a database. Admin has permission to do CRUD operations on customer. This project is secure against Cross site scripting (XSS), Cross site request forgery (CSRF), SQL injection, Clickjacking,etc.
This project helps admin to create, read, update, delete and filter customers information.
Use the package manager pip to install django.
- First of all create a isolated environment in your folder using following commands
i) virtualenv env
ii) env\scripts\activate
- Then install tools using
pip install -r requirements.txt
- All of the packages needed in this project is installed 😀.
- Then use
python manage.py makemigration
python manage.py migrate
python manage.py runserver
- Copy the url(127.0.0.1:8000) and open it into your browser.
- You must see this screen
That's it have a great day 👍