Quickstart
Start by opening the project repository to begin work right away

Prerequisites
Ensure the following tools are installed on your machine:
Node.js (v20.15.1 or later)
Clone the project repository
Run the following commands to clone the project and navigate to its directory:
git clone git@github.com:ICS26010-group-3/twin-cj.git
cd twin-cj
Install dependencies
To install the necessary dependencies, use one of the following package manager commands:
NPM
npm install
YARN
yarn install
PNPM
pnpm install
Configure environment variables
GitBook supports importing content from many popular writing tools and formats. If your content already exists, you can upload a file or group of files to be imported.
Create an
.env
file in the root directoryCopy the contents from the
.env.example
file and paste it into the.env
file.Update the sensitive values in the
.env
file, including the API key, database settings, and similar configurations.
Start the development server
Start the development server with your preferred package manager:
NPM
npm start dev
YARN
yarn dev
PNPM
pnpm dev
Last updated