Skip to content

Latest commit

 

History

History
86 lines (60 loc) · 1.03 KB

File metadata and controls

86 lines (60 loc) · 1.03 KB

Stream2Gather-frontend

Getting Started

Prerequisites

Make sure you have the following installed on your local development environment:

  • Node.js (version 18.11.12 or later recommended)
  • npm or yarn

Installation

  1. Clone the repository to your local machine:
git clone https://github.com/hwennnn/Stream2Gather
  1. Navigate to the project directory:
cd frontend
  1. Install the dependencies:
npm install
# or
yarn install

Running the Development Server

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Other Scripts

  • To build the project:
npm run build
# or
yarn build
  • To start the production server:
npm run start
# or
yarn start
  • To run ESLint:
npm run lint
# or
yarn lint
  • To generate GraphQL types:
npm run gen
# or
yarn gen
  • To generate environment types:
npm run gen-env
# or
yarn gen-env