From 517d6a2fdad7500127bd7eb4cd7e0185e54cbcef Mon Sep 17 00:00:00 2001 From: Rahul Sah Date: Fri, 7 Nov 2025 09:21:38 +0530 Subject: [PATCH 1/2] Format installation and run instructions in README Just added a little bit of formatting in the README.md --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9c6d1563..3ddbd80b 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ To set up Clowder locally, follow these steps: 2. Install Dependencies Install the required packages using your preferred package manager: - bash - Copy + + ```bash npm install # or yarn install @@ -64,9 +64,8 @@ To set up Clowder locally, follow these steps: 5. Run the Development Server Start the local development server: + ```bash npm run dev # or yarn dev - - -Your application should now be running on http://localhost:3000. \ No newline at end of file +Your application should now be running on http://localhost:3000. From 5d9fc578b22d43dce0b047c24db823b7fd6a470a Mon Sep 17 00:00:00 2001 From: Rahul Sah Date: Fri, 7 Nov 2025 09:35:54 +0530 Subject: [PATCH 2/2] Format instructions in README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ddbd80b..f744bf58 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ To set up Clowder locally, follow these steps: ```bash git clone https://github.com/your-username/clowder.git cd clowder + ``` 2. Install Dependencies Install the required packages using your preferred package manager: @@ -48,7 +49,7 @@ To set up Clowder locally, follow these steps: npm install # or yarn install - + ``` 3. Set Up Environment Variables Create a .env file in the root directory of the project and add the following environment variable: NEXT_PUBLIC_PROJECT_ID=your-project-id @@ -68,4 +69,5 @@ To set up Clowder locally, follow these steps: npm run dev # or yarn dev -Your application should now be running on http://localhost:3000. + ``` +Your application should now be running on .