From f67be35a71d93814fdaab3b20037a1bb4d2bd680 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Tue, 17 Jun 2025 02:25:45 +0000 Subject: [PATCH] Update application title to TaskMaster Pro - Changed the title in README.md to 'TaskMaster Pro - FastAPI Backend' - Updated PROJECT_NAME in config.py to 'TaskMaster Pro API' - Enhanced description in README.md --- README.md | 4 ++-- app/core/config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a8b347..ebbd3e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# TodoApp API - FastAPI Backend +# TaskMaster Pro - FastAPI Backend -A robust, RESTful API for managing todos, built with FastAPI and SQLite. +A powerful, secure RESTful API for managing tasks and todos, built with FastAPI and SQLite. ## Features diff --git a/app/core/config.py b/app/core/config.py index 3d1b1a9..155cccb 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -26,7 +26,7 @@ class Settings(BaseSettings): return v raise ValueError(v) - PROJECT_NAME: str = "TodoApp API" + PROJECT_NAME: str = "TaskMaster Pro API" class Config: case_sensitive = True