Remove duplicate instructions, simply link to README instead where the same is already present (and more up-to-date)

This commit is contained in:
Michael Vorburger ⛑️ 2020-11-04 01:28:22 +01:00 committed by GitHub
parent af391a70d4
commit 52f492b535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,54 +14,7 @@ We would love you to contribute to Community and help make it better than it is
## Building from source
1. Ensure you have:
`npm` installed - goto http://nodejs.org/download/ to download installer for your OS.
`ruby` installed - goto https://www.ruby-lang.org/en/documentation/installation/ to download latest version of ruby.
<br/> Note: On Ubuntu Linux you can use 'sudo apt-get install npm nodejs-legacy' (nodejs-legacy is required to avoid the ""/usr/bin/env: node: No such file or directory" problem).
<br/> Tip: If you are using Ubuntu/Linux, then doing `npm config set prefix ~` prevents you from having to run npm as root.
1. Clone this repository to your local filesystem (default branch is 'develop')
1. To download the dependencies, and be able to build, first install bower & grunt:
```
npm install -g bower
npm install -g grunt-cli
```
1. Next pull the runtime and build time dependencies by running bower, npm and gem bundler install commands on the project root folder:
```
bower install
```
```
npm install
```
```
bundler install
```
1. To preview the app, run the following command on the project root folder:
```
grunt serve
```
or open the 'index.html' file in FIREFOX browser
Note: If you see a warning similar to the one shown below on running `grunt serve` , try increasing the number of open files limit as per the suggestions at http://stackoverflow.com/questions/34588/how-do-i-change-the-number-of-open-files-limit-in-linux/
```
Waiting...Warning: EMFILE, too many open files
```
1. Default username/password: mifos/password. This application will hit the demo server by default.
1. You are done.
See [README](README.md).
## <a name="question"></a> Got a Question or Problem?