This is a to-do list with the following capabilities;
- User Registration
- User Login
- Lists out an individual user's to do items
- Can view an existing item and update it
- Can delete an item
After cloning the project set it up and run it by doing the following;
i. Create the migrations for our DB Models using the command
python manage.py makemigrations
ii. Enforce the migrations to our database
python manage.py migrate
iii. Start the dev server
python manage.py runserver