Getting Started

Getting Started

Welcome to our project! This guide will help you set up and run the project on your local machine.

Prerequisites

  • Node.js (version 14 or higher)
  • npm or yarn

Installation

  1. Clone the repository:

    git clone https://github.com/your-username/your-project.git
  2. Navigate to the project directory:

    cd your-project
  3. Install dependencies:

    npm install
    # or
    yarn install

Running the Project

To start the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 in your browser to view the project.

Building for Production

To create a production build:

npm run build
# or
yarn build

You can then start the production server with:

npm start
# or
yarn start

Congratulations! You've successfully set up and run the project.