Skip to content

UniLabsIMS/UniLabs-Web

Repository files navigation

UniLabs Web 🧪

Netlify Status codecov

This is the frontend web app for UniLabs Inventory Management System

Setup Guide 🙌

Make sure you have npm installed.

$ git clone https://github.com/UniLabsIMS/UniLabs-Web.git
$ cd UniLabs-Web

Intall dependencies

npm install

To run the app

npm start

Starting a New Feature 🛠️

Checkout main and pull changes

git checkout main
git pull

checkut to a new branch

git checkout -b feature/<feature_name>

install missing dependancies

npm install

Start and run the app.

npm start

Merging the current branch to master 🛠️

Pull updates your local main branch

git checkout main
git checkout pull

Update the required branch

git checkout <your_branch>
git merge main

Start the app

npm install