/its-frontend

Primary LanguageTypeScript

Quick Start

Install node

This project uses node version 21.7.3, but is compatible with later versions. Download from here

Install project depedencies

Run the following command to install project dependencies.

npm install
# or
yarn install
  • node comes with npm, but you can also use yarn. Install yarn by running:
npm install yarn

Mac users may encounter error when installing, refer to this link for solution.

Start Application

Using Docker

  1. Install Docker into your system.
  2. Run docker-compose up -d --build to run the Django server
  3. Application is available at http://localhost:3000

Using npm command

  1. Run the development server with the following command:
npm run dev
# or
yarn dev
  1. Open http://localhost:3000 with your browser to see the result.