Table of Contents
Table of Contents | ||
---|---|---|
|
...
E-mail helpdesk AT openmrs DOT org with the following information:
- OpenMRS ID
- Redirect URL – will likely be http://localhost:8080/oauth/openmrsid/callback.
Install Required Software
...
- Java SE 7 (Grails Java 8 support is bad). Install it via homebrew. I am going to assume it is installed for the purpose of this guide.
- MySQL
- sdkman
- nvm (node version manager)
Install node 5 via nvm. Ensure everything is set up correctly first.
Code Block | ||
---|---|---|
|
...
| ||||
$ nvm --version
0.29.0
$ nvm install 5
$ nvm alias default 5 |
If all is installed correctly you should see this output in the terminal when asking for "--version" of the software:
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
$ java -version
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
$ mysql --version
mysql Ver 14.14 Distrib 5.5.49, for debian-linux-gnu (x86_64) using readline 6.3
$ sdk version
SDKMAN 4.0.32
$ node --version
v5.6.0
|
Setting up Modulus Server
...
Delete the "failure" part of the url and fill in the form and allow access to your OpenMRS ID profile. If you get Error 500 with the message "Unsupported response types: [none]" all is good.
Go the grails serverURL, which has been set in the modulus-config.groovy file (i.e. http://localhost:8080). You should be logged in to openmrsid and it should greet you.
Installing Modulus UI
Clone the Modulus UI Repo.
...