=====
This is the web-based interface of Modulus, the OpenMRS Modules directory. It's a static, single-page web application written in AngularJS and provides a frontend to Modulus's REST API.
(for an in-depth guide on setting up a Modulus server with Modulus UI on the frontend, check out the guide on the OpenMRS Wiki)
-
You need Node v0.8 or greater installed.
-
Clone the source code:
$ git clone https://github.com/openmrs/openmrs-contrib-modulus-ui.git $ cd openmrs-contrib-modulus-ui
-
Install all dependencies:
$ npm install # If you don't already have grunt installed on your system: $ npm install -g grunt-cli
-
Check configuration settings in
config/modulusui.conf.js
. Most importantly, you'll want to check these settings:api.baseUrl
, the URL of the Modulus server that Modulus UI will connect toappUrl
, the URL Modulus UI will be served fromauth.authenticateUrl
andauth.clientId
, parameters used to perform OAuth login with OpenMRS ID
-
Build & run:
# To build a static copy of Modulus UI in ./app: $ grunt build # To run a development server: $ grunt serve
We'd love it if you'd like to give ideas, code contributions, or criticisms.
Most feedback and development coordination is on the MOD JIRA Project.
Continous deployment is managed on OpenMRS CI. master
auto-deploys to https://modules-stg.openmrs.org and prod
auto-deploys to https://modules.openmrs.org