This is a simple To Do application built with Django. It allows users to create, edit, and delete tasks in a to-do list.
Before running the project, make sure you have the following requirements installed on your machine:
- Python 3.x
- Django
- MyEnv
Follow the steps below to set up and run the project locally:
git clone https://github.com/Gincaza/ToDo-App
Create and activate a virtual environment using virtualenv
to isolate project dependencies:
python3 -m venv venv
source venv/bin/activate
python -m venv venv
venv\Scripts\activate
Before starting the server, you need to apply Django migrations to create the database:
python manage.py migrate
Now, you can start the Django development server:
python manage.py runserver
The server will be available at http://localhost:8000/.