Skip to content

Commit

Permalink
Merge pull request #140 from areklalo/SYNCT-320
Browse files Browse the repository at this point in the history
SYNCT-320: Create the openmrs-legacy-distro.properties file
  • Loading branch information
Kamil Madej committed Feb 13, 2019
2 parents fa28ccb + e33708b commit 98d982b
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ Install latest Docker.

To create or update a sync server (parent or child) run:
```bash
mvn openmrs-sdk:build-distro -Ddir=docker
mvn openmrs-sdk:build-distro -Ddistro=openmrs-distro.properties -Ddir=docker
cd docker
docker-compose up --build
```
Expand All @@ -20,6 +20,13 @@ The `--build` flag forces to rebuild a docker image, if you are updating the ser
You can adjust ports in the .env file.
If you want to remote debug add `DEBUG=True` in the .env file.

If you want to use legacy OpenMRS (OpenMRS version 1.11.7) you can use "openmrs-legacy-distro.properties" as below
```bash
mvn openmrs-sdk:build-distro -Ddistro=openmrs-legacy-distro.properties -Ddir=docker
cd docker
docker-compose up --build
```

Test servers
------------
- https://sync1.openmrs.org/
Expand Down
22 changes: 22 additions & 0 deletions openmrs-legacy-distro.properties
@@ -0,0 +1,22 @@
name=Sync2-legacy
version=${project.version}
distro.platform=1.11.7
omod.sync2=${project.version}
omod.fhir=${fhirVersion}
omod.atomfeed=${atomfeedVersion}
omod.webservices.rest=${webservices.restVersion}
omod.appointmentscheduling=1.8.0
omod.calculation=1.2
omod.emrapi=1.21.0
omod.htmlwidgets=1.9.0
omod.metadatamapping=1.3.2
omod.metadatasharing=1.2.2
omod.providermanagement=2.6.0
omod.reporting=1.12.0
omod.reportingcompatibility=1.5.13
omod.uiframework=3.11.0
omod.uilibrary=2.0.4
omod.event=2.5
omod.event.groupId=org.openmrs
omod.serialization.xstream=0.2.12
omod.serialization.xstream.type=omod

0 comments on commit 98d982b

Please sign in to comment.