My_todo_app

Prerequisites

  • Python 3.x
  • Git

Installation

1. Clone the Repository

First, clone the repository to your local machine using Git.

git clone https://github.com/Mankavelda/My_todo_app.git
cd My-todo-app

2. Create a Virtual Environment

python -m venv venv

3. activate the Virtual Environment

  • windows
venv\Scripts\activate
  • On macOS and Linux:
source venv/bin/activate

4. Install Django

pip install django

5. Run Migrations

python manage.py migrate

6. Start the Development Server

python manage.py runserver