Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 569 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 569 Bytes

Django TO-DO List App with User Registration & Login

This is a to-do list with the following capabilities;

  1. User Registration
  2. User Login
  3. Lists out an individual user's to do items
  4. Can view an existing item and update it
  5. 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