From e7e05ea5347bacd04c2ac313f7e2a75da850f116 Mon Sep 17 00:00:00 2001 From: Vasily Zubarev Date: Tue, 18 Mar 2025 18:27:13 +0100 Subject: [PATCH] docs: update installation readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 330280c..ac52917 100644 --- a/README.md +++ b/README.md @@ -185,10 +185,10 @@ npm install cp .env.example .env # Edit .env with your configuration -# Generate Prisma client -npx prisma generate +# Initialize the database +npx prisma migrate dev && npx prisma generate -# Seed the database (optional) +# Seed the database with default data (optional) npm run seed # Start the development server with Turbopack