From acb9908e3c82a5d020488ba64940359440abb6c0 Mon Sep 17 00:00:00 2001 From: Bruno Schaatsbergen Date: Mon, 19 Aug 2024 09:53:58 -0400 Subject: [PATCH 1/2] docs: add deps install Signed-off-by: Bruno Schaatsbergen --- website/README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/website/README.md b/website/README.md index c4033664f..86e2f15d4 100644 --- a/website/README.md +++ b/website/README.md @@ -2,7 +2,19 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next ## Getting Started -First, run the development server: +First, install the necessary dependencies: + +```bash +npm run install +# or +yarn install +# or +pnpm install +# or +bun install +``` + +Then, run the development server: ```bash npm run dev From 8fa71d3b90559238fd23665739dfbe171468c9ff Mon Sep 17 00:00:00 2001 From: Bruno Schaatsbergen Date: Mon, 19 Aug 2024 18:00:01 +0200 Subject: [PATCH 2/2] chore: rm `run` --- website/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/README.md b/website/README.md index 86e2f15d4..f7f6ad006 100644 --- a/website/README.md +++ b/website/README.md @@ -5,7 +5,7 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next First, install the necessary dependencies: ```bash -npm run install +npm install # or yarn install # or