TaskMaster is a scalable RESTful API for a task management system, designed to handle a growing user base and high volume of tasks. The API allows users to manage tasks with CRUD operations, deadlines, priorities, and status updates, ensuring data security and performance.
git clone https://github.com/JoshuaOloton/task-master.git
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate
pip install -r requirements.txt
uvicorn main:app --reload