Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.2 KB

README.md

File metadata and controls

36 lines (25 loc) · 1.2 KB

Django Todo List

Django Todo List is my first project developed (almost) from scratch to practice Django.

It is a simple web application for managing tasks. It allows users to add, delete, and mark tasks as completed in a super simple interface.

When I say it was "almost" from scratch, it is because it's a sort of continuation of a vanilla JS web app I created in the past, which can be seen on my Codepen.

The design is inspired by this Virtual Assistant project I saw on Dribbble.

Built with:

Requirements:

Running it

To get the Django Todo List running locally:

  1. Clone the repository to your local machine.
  2. Navigate to the project directory.
  3. Apply the migrations:
python manage.py migrate
  1. Start the development server:
python manage.py runserver
  1. Access http://127.0.0.1:8000/ in your browser.