From 9407e8f9e59e9665bb91e84afa0eb23456668465 Mon Sep 17 00:00:00 2001 From: Jayashree Date: Sat, 28 Feb 2026 22:23:22 +0530 Subject: [PATCH 1/3] added API-Backend --- app/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1750389..1f2202f 100644 --- a/app/main.py +++ b/app/main.py @@ -79,8 +79,9 @@ def create_task(task: TaskCreate): raise HTTPException(status_code=500, detail=str(e)) @app.get("/about",response_class=PlainTextResponse) + def about_backend(): - return "This is all backend" + return "This is all about backend " @app.get("/tasks") def list_tasks(limit: int = 100): From 833b038c26319c0135fd9f35b024e99fe14ed01e Mon Sep 17 00:00:00 2001 From: Jayashree Date: Sat, 28 Feb 2026 22:30:17 +0530 Subject: [PATCH 2/3] added Typo --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1f2202f..a26d6bc 100644 --- a/app/main.py +++ b/app/main.py @@ -81,7 +81,7 @@ def create_task(task: TaskCreate): @app.get("/about",response_class=PlainTextResponse) def about_backend(): - return "This is all about backend " + return "This is all about the backend" @app.get("/tasks") def list_tasks(limit: int = 100): From 5e4547b2488d5ae9c962a73aa9e76eab6bde730f Mon Sep 17 00:00:00 2001 From: Jayashree Date: Sat, 28 Feb 2026 22:36:44 +0530 Subject: [PATCH 3/3] changed the title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d24c74b..2698540 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # NxtDo Backend -A FastAPI backend application with Firebase authentication. +This project is a FastAPI backend application with Firebase authentication. ## Project Structure