From b0a82710409188f81611b80304e64e1e1734ba42 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 19 Jun 2025 15:43:27 +0300 Subject: [PATCH] docs(readme): improve formatting and structure of setup instructions --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4384c4c..5393b8a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ git clone git@forge.ftt.gmbh:ryanmwangi/Compareware_next.js.git cd compareware-nextjs ``` -Install dependencies: +2. Install dependencies: ``` npm install @@ -44,31 +44,31 @@ pnpm install ``` -# Set up the database: +## Set up the database: -Generate Prisma client +### Generate Prisma client ``` npx prisma generate ``` -Create and migrate the database +### Create and migrate the database ``` npx prisma migrate dev ``` -or if you don't have migrations set up: +#### or if you don't have migrations set up: ``` npx prisma db push ``` -(Optional) Seed the database with initial data: +#### (Optional) Seed the database with initial data: ``` npx prisma db seed ``` -Running the Development Server +## Running the Development Server ``` npm run dev # or