Pre-Registration module enables Individuals to book for an appointment in a Registration Centre, by providing basic demographic details. Pre-Registration details are consumed by Registration module while registering an Individual.
Pre-Registration has a UI component and a set of REST Services that back the UI. The UI component can be found at https://github.com/mosip/mosip-ref-impl/tree/master/pre-registration-ui.
Pre-Registration API specs are at https://github.com/mosip/mosip-docs/wiki/Pre-Registration-Services
Configuration Configurations used for ID Repo are available in mosip-config
Below command should be run in the parent project authentication
mvn clean install
Below command should be executed to run any service locally in specific profile and local configurations -
java -Dspring.profiles.active=<profile> -jar <jar-name>.jar
Below command should be executed to run any service locally in specific profile and remote configurations -
java -Dspring.profiles.active=<profile> -Dspring.cloud.config.uri=<config-url> -Dspring.cloud.config.label=<config-label> -jar <jar-name>.jar
Below command should be executed to run a docker image -
docker run -it -p <host-port>:<container-port> -e active_profile_env={profile} -e spring_config_label_env= {branch} -e spring_config_url_env={config_server_url} <docker-registry-IP:docker-registry-port/<docker-image>