This commit is contained in:
2025-05-17 10:16:13 +05:30
parent bca44bef38
commit 7d31ac2528

View File

@@ -11,7 +11,16 @@ Follow the steps below to set up and run the project:
npm install 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 ```sh
npm run db:generate npm run db:generate
``` ```
@@ -26,22 +35,14 @@ npm run db:migrate
npm run db:seed npm run db:seed
``` ```
3. Copy Environment Variables
Create `.env` files from the provided `.env.example` templates: 4. To Simply run all the app(Backend + Frontend).
Change the required ones env in .env files.
```sh
npm run setup:env
```
3. To Simply run all the app(Backend + Frontend).
```sh ```sh
npm run dev 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 ```sh
cd apps/Backend cd apps/Backend
npm run dev npm run dev