-
Notifications
You must be signed in to change notification settings - Fork 1
Installation and Building
Pratyush Kumar edited this page Dec 27, 2022
·
1 revision
To clone and run this application, you will need the following programs installed on your system:
# 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).
# creates an optimized production build of your application
$ npm run build # OR yarn run build
# run the built app
$ npm run start