From be1e6cc9ca6a2ba1498c17d1fbffbb04d7a40724 Mon Sep 17 00:00:00 2001 From: Dan Roscigno Date: Thu, 2 Oct 2025 07:59:44 -0400 Subject: [PATCH] Update README with installation instructions Added instructions for installing dependencies before running the development server. --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c403366..0892b05 100644 --- a/README.md +++ b/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 dependencies + +```bash +npm install +# or +yarn install +# or +pnpm install +# or +bun install +``` + +Then, run the development server: ```bash npm run dev