Configuration
Building from source
Note: Ensure you have
npminstalled - goto http://nodejs.org/download/ to download installer for your OS.Clone impact portal repository to your local file system
To download the dependencies, and be able to build, first install bower and grunt.
npm install -g bower npm install -g grunt-cliNext pull the run time and build time dependencies by running bower and npm install commands on the project root folder
bower installnpm installAdding associated tenants for each user.
open users.txt file In the impact-portal/app folder using text editor.
add associated tenants in JSON format.
example:{"userName":"mifos", "tenants":[
{"tenant":"default"},
{"tenant":"internaldemo"}]}
Save the file.Build the code for production deployment. Execute the following command on root folder
grunt prodTo preview the app, run the following command on the project root folder
grunt serveDefault username/password: mifos/password. select the server by adding server address as parameter in browser address bar.
Example: baseApiUrl=https://localhost:8443&tenantIdentifier=default
You are done.