This project is a React application.
Before running the project, make sure you have the following software installed on your machine:
- Node.js v16: You can use NVM (Node Version Manager) to install Node.js v16.
-
Install NVM (Node Version Manager) by following the instructions at NVM repository. Choose the installation method that is suitable for your operating system.
-
Once NVM is installed, open a new terminal window or restart your terminal.
-
Install Node.js v16 by running the following command:
nvm install 16
-
Verify that Node.js v16 is installed by running the following command:
node --version
You should see the version number of Node.js v16.
-
Update the environment variable as needed
-
Install project dependencies by navigating to the project directory in your terminal and running the following command:
npm install
-
Once the installation is complete, you can start the React application by running the following command:
npm run start
This command will start the development server and provide you with a local URL where you can access the application in your browser.
To run tests for the project, use the following command:
npm run test
This command will execute the tests and display the test results in the terminal.