From 7d31ac2528c520da6fd76313b5eb4006c0af4f14 Mon Sep 17 00:00:00 2001 From: Vishnu Date: Sat, 17 May 2025 10:16:13 +0530 Subject: [PATCH] updated --- README.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 0c73633..6dc435a 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,16 @@ Follow the steps below to set up and run the project: npm install ``` -2. Generate Prisma, and its Types. +2. Copy Environment Variables + +Create `.env` files from the provided `.env.example` templates: +Change the required ones env in .env files. + +```sh +npm run setup:env +``` + +3. Generate Prisma, and its Types. ```sh npm run db:generate ``` @@ -26,22 +35,14 @@ npm run db:migrate npm run db:seed ``` -3. Copy Environment Variables -Create `.env` files from the provided `.env.example` templates: -Change the required ones env in .env files. - -```sh -npm run setup:env -``` - -3. To Simply run all the app(Backend + Frontend). +4. To Simply run all the app(Backend + Frontend). ```sh npm run dev ``` -4. Or if want to run specfic app (either Backend or Frontend). +5. Or if want to run specfic app (either Backend or Frontend). ```sh cd apps/Backend npm run dev