Skip to content

Latest commit

 

History

History
75 lines (50 loc) · 1.14 KB

README.md

File metadata and controls

75 lines (50 loc) · 1.14 KB

UniLabs Mobile 🧪

codecov

This is the mobile application for UniLabs Inventory Management System

Setup Guide 🙌

Make sure you have flutter installed.

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

Intall dependencies

flutter pub get

To run the app, connect the mobile device or open the android emulator and run the following command

flutter run

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

flutter pub get

Start and run the app.

flutter run

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

flutter run