TaskManager is a simple Python-based web application using Django that allows users to create, read, update, and delete tasks.
- Create new tasks.
- View all tasks.
- Edit existing tasks.
- Delete tasks.
-
Clone the repository:
git clone https://github.com/YOUR_USERNAME/TaskManager.git cd TaskManager
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
-
Apply migrations:
python manage.py migrate
-
Run the application:
python manage.py runserver
-
Open your web browser and go to
http://127.0.0.1:8000
.
This project is licensed under the MIT License.