Getting Started

This is the frontend repository for the Agora project, which is designed to provide a user interface for interacting with the Agora platform.

Getting Started

To get a local copy up and running, follow these simple steps.

Prerequisites

Ensure you have the following installed on your local machine:

  • Node.js (v14.x or later)

  • npm (v6.x or later) or yarn (v1.22.x or later)

Installation

  1. Clone the repo

    git clone https://github.com/mossland/Agora_frontend.git
    
  2. Navigate to the project directory

    cd Agora_frontend
  3. Install NPM packages

    npm install

    or

    yarn install

Running the Project

To run the project locally, use the following command:

npm run dev

or

yarn dev

This will start the development server and you can view the project in your browser at http://localhost:3000.

Last updated