From ab503d885d5b0829563ce63cd6e6a03c98356b40 Mon Sep 17 00:00:00 2001 From: Amrit Biswal Date: Thu, 18 Dec 2025 15:51:59 +0100 Subject: [PATCH 1/3] package-lock added to gitignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9b310349..13dcbe8d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ node_modules -.env \ No newline at end of file +.env + +package-lock.json \ No newline at end of file From 095bae116ce24099b1beb6160130c9fa5382ea48 Mon Sep 17 00:00:00 2001 From: MassFuer Date: Thu, 18 Dec 2025 15:57:46 +0100 Subject: [PATCH 2/3] defining first store in db --- db.json | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/db.json b/db.json index e290825d..9c0bf1b3 100644 --- a/db.json +++ b/db.json @@ -1,16 +1,9 @@ { - "projects": [ + "store": [ { "id": 1, - "title": "Module 2 Project", - "description": "Module 2 project - Integrate a React app with backend.", - "userId": 1 - }, - { - "id": 2, - "title": "Module 3 Project", - "description": "Create a full-stack application using MERN stack.", - "userId": 1 + "name": "Storyt", + "description": "super store" } ], "tasks": [ From bba2281d4272ab983f4de640c7ca3ba61f3bd0fb Mon Sep 17 00:00:00 2001 From: Amrit Biswal Date: Thu, 18 Dec 2025 16:09:57 +0100 Subject: [PATCH 3/3] New changes on db --- db.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/db.json b/db.json index 9c0bf1b3..d244654f 100644 --- a/db.json +++ b/db.json @@ -6,6 +6,18 @@ "description": "super store" } ], + "projects": [ + { + "id": 1, + "storeId": 1, + "name": "Build a React App" + }, + { + "id": 2, + "storeId": 1, + "name": "Create a Form" + } + ], "tasks": [ { "id": 1,