Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

TaskManager

An application for managing tasks that enables multiple users to collaborate on a single project with multiple tasks.

Follow these steps to run the application:

Prerequisites

Before you begin, make sure you have the following prerequisites installed:

Installation and Setup

  1. Create and activate a virtual environment:
python3 -m venv env
source env/bin/activate
  1. Install the required Python packages:
pip install -r 'requirements.txt'
  1. Start the FastAPI application:
uvicorn app.main:app --reload
  1. Open your web browser and navigate to http://127.0.0.1:8000