Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Building from source

  1. Note: Ensure you have npm installed - goto http://nodejs.org/download/ to download installer for your OS.

  2. Clone impact portal repository to your local filesystem 

  3. To download the dependencies, and be able to build, first install bower & grunt

    npm install -g bower
    npm install -g grunt-cli
    
  4. Next pull the runtime and build time dependencies by running bower and npm install commands on the project root folder

    bower install
    
    npm install 
    
  5. Build the code for production deployment.

    grunt prod

  6. To preview the app, run the following command on the project root folder

    grunt serve
  7. Default username/password: mifos/password. This application will hit the demo server by default.

     

    You are done.