The Initializer module is an API-only module that processes the content of the configuration folder when it is found inside OpenMRS' application data directory:
. \_ modules/ \_ openmrs.war \_ openmrs-runtime.properties \_ ... \_ configuration/
The configuration folder is subdivided into domain subfolders:
configuration/
\_ addresshierarchy/
\_ concepts/
\_ drugs/
\_ globalproperties/
\_ idgen/
\_ jsonkeyvalues/
\_ messageproperties/
\_ metadatasharing/
\_ personattributetypes/
Each domain-specific subfolder contains the metadata and configuration information that is relevant to the subfolder's domain. Although several file types are supported for providing metadata, CSV files are the preferred format and all domain should aim at being covered through parsing CSV files.
- This module allows to preload an OpenMRS installation with maintained and versioned data and metadata.
- Initializer processes CSV files upon startup.
- Each line of those CSV files represents an OpenMRS object to be created or edited.
Even though using CSV files is the preferred approach, some data or metadata domains rely on other file formats to be imported. You will encounter those other formats in the list below.
We suggest to go through the following before looking at specific import domains:
This is the list of currently supported domains in respect to their loading order:
- Message properties key-values (.properties files)
- Generic JSON key-values (JSON files)
- Metadatasharing packages (ZIP files)
- Global properties (XML files)
- Concepts (CSV files)
- Person attribute types (CSV files)
- Identifier sources (CSV files)
- Drugs (CSV files)
- Order Frequencies(CSV files)
Build the master branch and install the built OMOD to your OpenMRS instance:
git clone https://github.com/mekomsolutions/openmrs-module-initializer/tree/master
cd openmrs-module-initializer
mvn clean install
- Core 1.11.8
Initializer enables to achieve the OpenMRS backend equivalent of Bahmni Config for Bahmni Apps. It facilitates the deployment of implementation-specific configurations without writing any code, by just filling the configuration folder with the needed metadata and in accordance to Initializer's available implementation.
Find us on OpenMRS Talk: sign up, start a conversation and ping us with the mentions starting with @mks.. in your message.
- Loads i18n messages files from configuration/addresshierarchy and configuration/messageproperties.
- Bulk creation and edition of concepts provided through CSV files in configuration/concepts.
This covers: basic concepts, concepts with nested members or answers and concepts with multiple mappings. - Bulk creation and edition of drugs provided through CSV files in configuration/drugs.
- Overrides global properties provided through XML configuration files in configuration/globalproperties.
- Modifies (retire) or create identifier sources through CSV files in configuration/idgen.
- Exposes runtime key-values configuration parameters through JSON files in configuration/jsonkeyvalues.
- Bulk creation and edition of person attribute types provided through CSV files in configuration/personattributetypes.
- Imports MDS packages provided as .zip files in configuration/metadatasharing.
- Bulk creation and edition of order frequencies provided through CSV files in configuration/orderfrequencies.