Skip to content

Installation and Building

Pratyush Kumar edited this page Dec 27, 2022 · 1 revision

How to use

To clone and run this application, you will need the following programs installed on your system:

  • Git (v2.25.1 used for this project)
  • Node.js (v16.15.1 used for this project)
# clone the repository
$ git clone https://github.com/StrixROX/Frontend-Assignment.git

# go into the repository
$ cd Frontend-Assignment

# install dependencies using either
$ npm install # OR yarn install

# start the development server
$ npm run dev # OR yarn run dev

The app should now be accessible by opening https://localhost:3000 (unless stated otherwise in the terminal output) in your browser.

NOTE: There is only one route / in the app. This is a single page application (SPA).

Building

# creates an optimized production build of your application
$ npm run build # OR yarn run build

# run the built app
$ npm run start
Clone this wiki locally