Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1006 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 1006 Bytes

TaskManager project

Django project creating for managing Tasks

Features

  1. User Profile

    • View and update user profile details.
    • Display user's full name, email, and other relevant information.
    • Edit personal details such as first name, last name, email, etc.
  2. Task Management

    • Create, update, and delete tasks.
    • Mark tasks as complete or incomplete.
  3. User Authentication

    • Secure user authentication system.
    • Register new users and handle login/logout functionality.
  4. Search Functionality

    • Search for tasks based on keywords or other criteria.

Check it out!

TaskManager project deployed to Render

Installation

git clone https://github.com/Sparix/TaskManager.git
cd TaskManager
python3 -m venv venv    #create virtual environment 
source venv/Scripts/activate
pip install -r requirements.txt
python manage.py runserver    #start Django Server