This is a Django Rest application for a parcel delivery system covering at least 5 use cases, 3 entities and two user types.
- Parcel
- Delivery Driver
- Customer
- Admin
- Delivery Driver
- Admin can add/update/delete a parcel to the system
- Delivery Driver can view the list of parcels assigned to them for delivery
- Delivery Driver can update the status of a parcel (delivered, in transit, etc.)
- Customer can view the status of their parcel using a tracking ID
- Customer can update the delivery address of their parcel
- Python 3.6+
- Django 4.1,
Make sure your virtual environment is started (venv) in the project. Install using pip in terminal...
pip install django djangorestframework
In the Terminal start the server by typing:
python manage.py runserver
... then type enter.
Test The Project by typing:
python manage.py test