A Postit-themed to-do list application built with Python and Django.
ToDoList is a PostIt-themed to-do list developed to assist users who have numerous notes and need to remember a lot of things.
- ➕ Add new notes: Include a title, date, description, and choose a color for your note.
- ➖ Remove notes: Easily delete notes you no longer need.
- ❔ Change notes: Modify note details whenever you want.
-
Clone the repository:
git clone https://github.com/LuisEduardoF/ToDoList
-
Navigate to the ToDoList folder:
cd ToDoList/
-
Create a virtual environment:
python3 -m venv venv
-
Activate the virtual environment:
source venv/bin/activate
-
Install the dependencies:
pip install -r requirements.txt
-
Navigate to the 'todo' folder:
cd todo/
- Create a database and apply migrations:
./manage.py makemigrations to_do_list python manage.py migrate
- Run the development server:
python manage.py runserver