Be High, is an Ionic application to manage the matrix screens modules.
It can be previewed on my GitHub repository here: https://github.com/nduwarugirabruno/BeHigh
To start building, clone this repository:
git clone https://github.com/nduwarugirabruno/BeHigh.gitOnce cloned, run the following to install dependencies and run the app:
cd /path/to/the/cloned/repository/folder
npm i
ionic serveTo build for production, run:
ionic buildTo build an apk package, run:
ionic cap add android
ionic cap sync
cd android
./gradlew assembleDebug Note: Gradle is necessary to use ./gradlew assembleDebug. If it's asked, install it.
To run the unit tests once, run:
ionic testTo run the unit tests and watch for file changes during development, run:
ionic test --watch