Mifos Self Service Meteorjs based Application with support of web and hybrid mobile app support.
-
First make sure if meteor is present or not from the below given command.
meteor --version -
If it is not present download it from the following command
For OS X or Linux
curl https://install.meteor.com/ | shFor windows
Download from this link
-
Fork the project
-
Clone the project to your local machine using the commmand
git clone https://github.com/gauravsaini03/mifos-selfservice-app -
Now enter into the project directory
cd mifos-selfservice-app/ -
To start the angular-meteor app write
meteor -
Note
By default the meteor will be hosted on port number 3000. To start the meteor app on another port number.
```
meteor --port portNumber
```
-
First make sure that meteor is installed on your device.
-
Follow below given links to have all the pre-requisites which you will need to install the app on your device.
Note :- Currently, it is only possible to build iOS apps on an OS X system.
-
After following the above instructions on any of the link.Now add platform depending upon your use.
meteor add-platform iosadds the iOS platform to a project.meteor add-platform androidadds the Android platform to a project.
-
To run your app on a emulator
meteor run iosruns your Meteor app in an iOS simulator and starts the server.meteor run androidruns your Meteor app in an Android simulator and starts the server.
-
To run your device on a physical device
meteor run ios-deviceruns your Meteor app in an iOS device and starts the server.meteor run android-deviceruns your Meteor app in an Android device and starts the server.
-
Note
If any error occurs during running your app, you can list the missing dependencies by appending
--verboseat the end of the command which you have used to run the app either on a emulator or physical device.meteor run ios --verbose meteor run ios-device --verbose