Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,35 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next

## Getting Started

First, run the development server:
### Prerequisites
Make sure you have **Node.js v15 or later** installed. Lower versions will cause a `SyntaxError: Unexpected token '??='` error.

### Clone the Repository

```bash
# HTTPS
git clone https://github.com/firstcontributions/frontend.git

# SSH
git clone git@github.com:firstcontributions/frontend.git

# GitHub CLI
gh repo clone firstcontributions/frontend
```

### Install Dependencies

First, install the required dependencies:

```bash
npm install
# or
yarn install
```

### Run the Development Server

Then, run the development server:

```bash
npm run dev
Expand Down Expand Up @@ -34,4 +62,4 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.