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.
To get the Django Todo List running locally:
- Clone the repository to your local machine.
- Navigate to the project directory.
- Apply the migrations:
python manage.py migrate
- Start the development server:
python manage.py runserver
- Access
http://127.0.0.1:8000/
in your browser.