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