This tutorial will introduce you to OpenMRS SDK (Software Development Kit). It assumes that you have basic understanding of OpenMRS modular architecture (you can learn about it by reading Technical Overview).
...
If you want to enable remote debugging by default when running the server,
specify the port number here (e.g. 1044). Leave blank to disable debugging.
(Do not do this on a production server) (default: 'no debugging'):
Type default value '1044' and push enter. Specifying debug port is essential to setup remote debugging configuration. You will be asked what database you want to use:
...
This way you can set up development environment for any module and openmrs-core. Remember that you have to provide all required modules by currently developed module.
If you want to delete the environment, use the following command with the server id. If you want to find the correct server id, go to ~/openmrs (Linux/Mac) or %userprofile%\openmrs (Windows). There the respective folder names equal to server ids.
Code Block |
---|
mvn openmrs-sdk:delete -DserverId=<serverID> |
Developing with the Reference Application
...
To sum up, our openmrs-distro.properties file will look like this:
name= OWA development
version= 1.0
war.openmrs= 2.0.0
omod.owa=1.6.2
omod.webservices.rest=2.17-SNAPSHOT
SDK automatically assumes that modules Maven Group ID is 'org.openmrs.module', but you can declare another Group ID
...