├── .env ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── LICENSE-HEADER ├── README.md ├── cleanDb.sh ├── config ├── Dockerfile └── log │ └── logback.xml ├── demo-data-start.sh ├── dhis2 ├── .env ├── config │ ├── db │ │ └── dhis2.sql │ └── dhis2 │ │ └── dhis.conf ├── docker-compose.yml └── settings-sample.env ├── docker-compose.demo-data.yml ├── docker-compose.erd-generation.yml ├── docker-compose.one-network-referencedata-extension.yml ├── docker-compose.one-network-stockmanagement-extension.yml ├── docker-compose.openlmis-stockmanagement-validator-extension.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── architecture │ ├── index.rst │ └── interop.md │ ├── collect-docs.py │ ├── components │ ├── erd-auth.rst │ ├── erd-cce.rst │ ├── erd-fulfillment.rst │ ├── erd-notification.rst │ ├── erd-referencedata.rst │ ├── erd-report.rst │ ├── erd-requisition.rst │ ├── erd-stockmanagement.rst │ └── index.rst │ ├── conf.py │ ├── contribute │ ├── OpenLMIS-CAA-2021.pdf │ ├── OpenLMIS-CLA-2021.pdf │ ├── contributeDocs.rst │ ├── contributionGuide.md │ └── index.rst │ ├── conventions │ ├── ReleaseCandidateProcessDiagram-Oct2017-fromGliffy.png │ ├── communityPrinciples15.md │ ├── index.rst │ ├── nfr.rst │ ├── performance.rst │ ├── performanceData.rst │ ├── performanceTips.rst │ ├── serviceHealth.rst │ └── versioningReleasing.md │ ├── deployment │ └── index.rst │ ├── header.png │ ├── index.rst │ ├── modify-docs.py │ ├── releases │ ├── 3.2.1-regression-tests.csv │ ├── 3.3.0-regression-tests.csv │ ├── 3.4 Release test case executions.csv │ ├── UI-Performance-3.10.png │ ├── UI-Performance-3.11.png │ ├── UI-Performance-3.12.png │ ├── UI-Performance-3.13.png │ ├── UI-Performance-3.3.0.png │ ├── UI-Performance-3.4.0.png │ ├── UI-Performance-3.5.0.png │ ├── UI-Performance-3.6.png │ ├── UI-Performance-3.7.png │ ├── UI-Performance-3.8.png │ ├── UI-Performance-3.9.png │ ├── index.rst │ ├── openlmis-ref-distro-v3.10.0.rst │ ├── openlmis-ref-distro-v3.11.0.rst │ ├── openlmis-ref-distro-v3.12.0.rst │ ├── openlmis-ref-distro-v3.12.1.rst │ ├── openlmis-ref-distro-v3.13.0.rst │ ├── openlmis-ref-distro-v3.14.0.rst │ ├── openlmis-ref-distro-v3.15.0.rst │ ├── openlmis-ref-distro-v3.16.0.rst │ ├── openlmis-ref-distro-v3.17.0.rst │ ├── openlmis-ref-distro-v3.18.0.rst │ ├── openlmis-ref-distro-v3.19.0.rst │ ├── openlmis-ref-distro-v3.19.1.rst │ ├── openlmis-ref-distro-v3.19.2.rst │ ├── openlmis-ref-distro-v3.2.0.rst │ ├── openlmis-ref-distro-v3.2.1.rst │ ├── openlmis-ref-distro-v3.3.0.rst │ ├── openlmis-ref-distro-v3.3.1.rst │ ├── openlmis-ref-distro-v3.4.0.rst │ ├── openlmis-ref-distro-v3.4.1.rst │ ├── openlmis-ref-distro-v3.5.0.rst │ ├── openlmis-ref-distro-v3.6.0.rst │ ├── openlmis-ref-distro-v3.7.0.rst │ ├── openlmis-ref-distro-v3.8.0.rst │ ├── openlmis-ref-distro-v3.9.0.rst │ └── ui-performance-loading-times-Oct2017-v3.2.1.png │ └── requirements.txt ├── openlmis-ref-distro-v3.15.1.rst ├── reporting ├── .env ├── README.md ├── config │ ├── Dockerfile │ ├── init.sh │ └── services │ │ ├── connect │ │ ├── register.sh │ │ ├── sink-orderable-identifiers.json │ │ ├── sink-orderables.json │ │ ├── sink-referencedata.json │ │ ├── sink-requisition-group-members.json │ │ ├── sink-requisition.json │ │ ├── sink-stockmanagement.json │ │ ├── sink-supported-programs.json │ │ ├── source-referencedata.json │ │ ├── source-requisition.json │ │ └── source-stockmanagement.json │ │ ├── nginx │ │ ├── consul-template │ │ │ └── openlmis.conf │ │ ├── init.sh │ │ └── tls │ │ │ └── .gitignore │ │ ├── nifi │ │ ├── conf │ │ │ └── logback.xml │ │ ├── libs │ │ │ └── postgresql-42.2.3.jar │ │ └── scripts │ │ │ ├── download-toolkit.sh │ │ │ ├── hideUsernameWithinNifi.sh │ │ │ ├── preload.sh │ │ │ ├── start.sh │ │ │ └── templates │ │ │ ├── generate_measure.xml │ │ │ └── generate_measure_report.xml │ │ ├── scalyr │ │ └── agent.json │ │ └── superset │ │ ├── dashboards │ │ └── openlmis_uat_dashboards.zip │ │ ├── datasources │ │ └── database.yaml │ │ ├── init.sh │ │ └── superset_config.py ├── cron │ ├── Dockerfile │ └── periodic │ │ ├── 15min │ │ └── refresh-mv │ │ ├── daily │ │ └── .gitignore │ │ ├── hourly │ │ └── .gitignore │ │ ├── monthly │ │ └── .gitignore │ │ └── weekly │ │ └── .gitignore ├── db │ ├── Dockerfile │ └── docker-entrypoint-initdb.d │ │ ├── reporting-db.sh │ │ ├── superset-db.sh │ │ └── templates │ │ └── OlmisCreateTableStatements.sql ├── debezium-connect │ ├── Dockerfile │ └── README.md ├── docker-compose.local.yml ├── docker-compose.yml ├── init-env.sh ├── nifi-cache │ └── .gitignore ├── settings-sample.env ├── start-local.sh ├── superset-login.png ├── superset │ ├── .env │ ├── .python-version │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── app-customizations │ │ └── 1.5.2 │ │ │ ├── superset-frontend │ │ │ └── src │ │ │ │ └── dashboard │ │ │ │ └── components │ │ │ │ └── Header │ │ │ │ └── index.jsx │ │ │ └── views │ │ │ └── core.py │ ├── docker-compose.yml │ ├── requirements.txt │ └── superset │ │ ├── superset-demo │ │ └── superset-init └── upgrade-superset-config.sh ├── settings-sample.env ├── start-local.sh └── utils ├── awscli ├── Dockerfile ├── README.md ├── entrypoint.sh └── env-sample ├── browsermob-proxy ├── Dockerfile ├── README.md ├── docker-compose.yml └── waitProxy.sh ├── bzt-yarn ├── Dockerfile └── README.md ├── clean.sh ├── generateErdFor.sh ├── obscure-data ├── Dockerfile ├── README.md ├── env-sample └── obscure.sh ├── restore-snapshot ├── Dockerfile ├── README.md ├── env-sample └── restore-snapshot.sh ├── run-sql ├── Dockerfile ├── README.md ├── entrypoint.sh └── sql │ └── start.sql ├── start-instance ├── Dockerfile ├── README.md ├── env-sample └── start-instance.sh ├── stop-instance ├── Dockerfile ├── README.md ├── env-sample └── stop-instance.sh └── toolbelt ├── Dockerfile └── README.md /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | logs/ 3 | build/ 4 | *.iml 5 | *.pyc 6 | settings.env 7 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/LICENSE-HEADER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/README.md -------------------------------------------------------------------------------- /cleanDb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/cleanDb.sh -------------------------------------------------------------------------------- /config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/config/Dockerfile -------------------------------------------------------------------------------- /config/log/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/config/log/logback.xml -------------------------------------------------------------------------------- /demo-data-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/demo-data-start.sh -------------------------------------------------------------------------------- /dhis2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/dhis2/.env -------------------------------------------------------------------------------- /dhis2/config/db/dhis2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/dhis2/config/db/dhis2.sql -------------------------------------------------------------------------------- /dhis2/config/dhis2/dhis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/dhis2/config/dhis2/dhis.conf -------------------------------------------------------------------------------- /dhis2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/dhis2/docker-compose.yml -------------------------------------------------------------------------------- /dhis2/settings-sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/dhis2/settings-sample.env -------------------------------------------------------------------------------- /docker-compose.demo-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.demo-data.yml -------------------------------------------------------------------------------- /docker-compose.erd-generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.erd-generation.yml -------------------------------------------------------------------------------- /docker-compose.one-network-referencedata-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.one-network-referencedata-extension.yml -------------------------------------------------------------------------------- /docker-compose.one-network-stockmanagement-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.one-network-stockmanagement-extension.yml -------------------------------------------------------------------------------- /docker-compose.openlmis-stockmanagement-validator-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.openlmis-stockmanagement-validator-extension.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/architecture/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/architecture/index.rst -------------------------------------------------------------------------------- /docs/source/architecture/interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/architecture/interop.md -------------------------------------------------------------------------------- /docs/source/collect-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/collect-docs.py -------------------------------------------------------------------------------- /docs/source/components/erd-auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-auth.rst -------------------------------------------------------------------------------- /docs/source/components/erd-cce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-cce.rst -------------------------------------------------------------------------------- /docs/source/components/erd-fulfillment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-fulfillment.rst -------------------------------------------------------------------------------- /docs/source/components/erd-notification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-notification.rst -------------------------------------------------------------------------------- /docs/source/components/erd-referencedata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-referencedata.rst -------------------------------------------------------------------------------- /docs/source/components/erd-report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-report.rst -------------------------------------------------------------------------------- /docs/source/components/erd-requisition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-requisition.rst -------------------------------------------------------------------------------- /docs/source/components/erd-stockmanagement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/erd-stockmanagement.rst -------------------------------------------------------------------------------- /docs/source/components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/components/index.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contribute/OpenLMIS-CAA-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/contribute/OpenLMIS-CAA-2021.pdf -------------------------------------------------------------------------------- /docs/source/contribute/OpenLMIS-CLA-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/contribute/OpenLMIS-CLA-2021.pdf -------------------------------------------------------------------------------- /docs/source/contribute/contributeDocs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/contribute/contributeDocs.rst -------------------------------------------------------------------------------- /docs/source/contribute/contributionGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/contribute/contributionGuide.md -------------------------------------------------------------------------------- /docs/source/contribute/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/contribute/index.rst -------------------------------------------------------------------------------- /docs/source/conventions/ReleaseCandidateProcessDiagram-Oct2017-fromGliffy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/ReleaseCandidateProcessDiagram-Oct2017-fromGliffy.png -------------------------------------------------------------------------------- /docs/source/conventions/communityPrinciples15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/communityPrinciples15.md -------------------------------------------------------------------------------- /docs/source/conventions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/index.rst -------------------------------------------------------------------------------- /docs/source/conventions/nfr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/nfr.rst -------------------------------------------------------------------------------- /docs/source/conventions/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/performance.rst -------------------------------------------------------------------------------- /docs/source/conventions/performanceData.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/performanceData.rst -------------------------------------------------------------------------------- /docs/source/conventions/performanceTips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/performanceTips.rst -------------------------------------------------------------------------------- /docs/source/conventions/serviceHealth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/serviceHealth.rst -------------------------------------------------------------------------------- /docs/source/conventions/versioningReleasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/conventions/versioningReleasing.md -------------------------------------------------------------------------------- /docs/source/deployment/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/deployment/index.rst -------------------------------------------------------------------------------- /docs/source/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/header.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modify-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/modify-docs.py -------------------------------------------------------------------------------- /docs/source/releases/3.2.1-regression-tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/3.2.1-regression-tests.csv -------------------------------------------------------------------------------- /docs/source/releases/3.3.0-regression-tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/3.3.0-regression-tests.csv -------------------------------------------------------------------------------- /docs/source/releases/3.4 Release test case executions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/3.4 Release test case executions.csv -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.10.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.11.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.12.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.13.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.3.0.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.4.0.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.5.0.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.6.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.7.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.8.png -------------------------------------------------------------------------------- /docs/source/releases/UI-Performance-3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/UI-Performance-3.9.png -------------------------------------------------------------------------------- /docs/source/releases/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/index.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.10.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.10.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.11.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.11.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.12.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.12.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.12.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.12.1.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.13.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.13.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.14.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.14.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.15.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.15.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.16.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.16.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.17.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.17.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.18.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.18.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.19.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.19.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.19.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.19.1.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.19.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.19.2.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.2.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.2.1.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.3.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.3.1.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.4.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.4.1.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.5.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.6.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.7.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.8.0.rst -------------------------------------------------------------------------------- /docs/source/releases/openlmis-ref-distro-v3.9.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/openlmis-ref-distro-v3.9.0.rst -------------------------------------------------------------------------------- /docs/source/releases/ui-performance-loading-times-Oct2017-v3.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/releases/ui-performance-loading-times-Oct2017-v3.2.1.png -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /openlmis-ref-distro-v3.15.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/openlmis-ref-distro-v3.15.1.rst -------------------------------------------------------------------------------- /reporting/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/.env -------------------------------------------------------------------------------- /reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/README.md -------------------------------------------------------------------------------- /reporting/config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/Dockerfile -------------------------------------------------------------------------------- /reporting/config/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/init.sh -------------------------------------------------------------------------------- /reporting/config/services/connect/register.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/register.sh -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-orderable-identifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-orderable-identifiers.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-orderables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-orderables.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-referencedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-referencedata.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-requisition-group-members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-requisition-group-members.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-requisition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-requisition.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-stockmanagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-stockmanagement.json -------------------------------------------------------------------------------- /reporting/config/services/connect/sink-supported-programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/sink-supported-programs.json -------------------------------------------------------------------------------- /reporting/config/services/connect/source-referencedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/source-referencedata.json -------------------------------------------------------------------------------- /reporting/config/services/connect/source-requisition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/source-requisition.json -------------------------------------------------------------------------------- /reporting/config/services/connect/source-stockmanagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/connect/source-stockmanagement.json -------------------------------------------------------------------------------- /reporting/config/services/nginx/consul-template/openlmis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nginx/consul-template/openlmis.conf -------------------------------------------------------------------------------- /reporting/config/services/nginx/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nginx/init.sh -------------------------------------------------------------------------------- /reporting/config/services/nginx/tls/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /reporting/config/services/nifi/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/conf/logback.xml -------------------------------------------------------------------------------- /reporting/config/services/nifi/libs/postgresql-42.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/libs/postgresql-42.2.3.jar -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/download-toolkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/download-toolkit.sh -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/hideUsernameWithinNifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/hideUsernameWithinNifi.sh -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/preload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/preload.sh -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/start.sh -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/templates/generate_measure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/templates/generate_measure.xml -------------------------------------------------------------------------------- /reporting/config/services/nifi/scripts/templates/generate_measure_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/nifi/scripts/templates/generate_measure_report.xml -------------------------------------------------------------------------------- /reporting/config/services/scalyr/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/scalyr/agent.json -------------------------------------------------------------------------------- /reporting/config/services/superset/dashboards/openlmis_uat_dashboards.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/superset/dashboards/openlmis_uat_dashboards.zip -------------------------------------------------------------------------------- /reporting/config/services/superset/datasources/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/superset/datasources/database.yaml -------------------------------------------------------------------------------- /reporting/config/services/superset/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/superset/init.sh -------------------------------------------------------------------------------- /reporting/config/services/superset/superset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/config/services/superset/superset_config.py -------------------------------------------------------------------------------- /reporting/cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/cron/Dockerfile -------------------------------------------------------------------------------- /reporting/cron/periodic/15min/refresh-mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/cron/periodic/15min/refresh-mv -------------------------------------------------------------------------------- /reporting/cron/periodic/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reporting/cron/periodic/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reporting/cron/periodic/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reporting/cron/periodic/weekly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reporting/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/db/Dockerfile -------------------------------------------------------------------------------- /reporting/db/docker-entrypoint-initdb.d/reporting-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/db/docker-entrypoint-initdb.d/reporting-db.sh -------------------------------------------------------------------------------- /reporting/db/docker-entrypoint-initdb.d/superset-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/db/docker-entrypoint-initdb.d/superset-db.sh -------------------------------------------------------------------------------- /reporting/db/docker-entrypoint-initdb.d/templates/OlmisCreateTableStatements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/db/docker-entrypoint-initdb.d/templates/OlmisCreateTableStatements.sql -------------------------------------------------------------------------------- /reporting/debezium-connect/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/debezium-connect/Dockerfile -------------------------------------------------------------------------------- /reporting/debezium-connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/debezium-connect/README.md -------------------------------------------------------------------------------- /reporting/docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/docker-compose.local.yml -------------------------------------------------------------------------------- /reporting/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/docker-compose.yml -------------------------------------------------------------------------------- /reporting/init-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/init-env.sh -------------------------------------------------------------------------------- /reporting/nifi-cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /reporting/settings-sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/settings-sample.env -------------------------------------------------------------------------------- /reporting/start-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/start-local.sh -------------------------------------------------------------------------------- /reporting/superset-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset-login.png -------------------------------------------------------------------------------- /reporting/superset/.env: -------------------------------------------------------------------------------- 1 | OL_SUPERSET_PATCHUP_VERSION=v0.5.1 2 | -------------------------------------------------------------------------------- /reporting/superset/.python-version: -------------------------------------------------------------------------------- 1 | 3.6.8 2 | -------------------------------------------------------------------------------- /reporting/superset/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/Dockerfile -------------------------------------------------------------------------------- /reporting/superset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/LICENSE -------------------------------------------------------------------------------- /reporting/superset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/README.md -------------------------------------------------------------------------------- /reporting/superset/app-customizations/1.5.2/superset-frontend/src/dashboard/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/app-customizations/1.5.2/superset-frontend/src/dashboard/components/Header/index.jsx -------------------------------------------------------------------------------- /reporting/superset/app-customizations/1.5.2/views/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/app-customizations/1.5.2/views/core.py -------------------------------------------------------------------------------- /reporting/superset/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/docker-compose.yml -------------------------------------------------------------------------------- /reporting/superset/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/requirements.txt -------------------------------------------------------------------------------- /reporting/superset/superset/superset-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/superset/superset-demo -------------------------------------------------------------------------------- /reporting/superset/superset/superset-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/superset/superset/superset-init -------------------------------------------------------------------------------- /reporting/upgrade-superset-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/reporting/upgrade-superset-config.sh -------------------------------------------------------------------------------- /settings-sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/settings-sample.env -------------------------------------------------------------------------------- /start-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/start-local.sh -------------------------------------------------------------------------------- /utils/awscli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/awscli/Dockerfile -------------------------------------------------------------------------------- /utils/awscli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/awscli/README.md -------------------------------------------------------------------------------- /utils/awscli/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/awscli/entrypoint.sh -------------------------------------------------------------------------------- /utils/awscli/env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/awscli/env-sample -------------------------------------------------------------------------------- /utils/browsermob-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/browsermob-proxy/Dockerfile -------------------------------------------------------------------------------- /utils/browsermob-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/browsermob-proxy/README.md -------------------------------------------------------------------------------- /utils/browsermob-proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/browsermob-proxy/docker-compose.yml -------------------------------------------------------------------------------- /utils/browsermob-proxy/waitProxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/browsermob-proxy/waitProxy.sh -------------------------------------------------------------------------------- /utils/bzt-yarn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/bzt-yarn/Dockerfile -------------------------------------------------------------------------------- /utils/bzt-yarn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/bzt-yarn/README.md -------------------------------------------------------------------------------- /utils/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/clean.sh -------------------------------------------------------------------------------- /utils/generateErdFor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/generateErdFor.sh -------------------------------------------------------------------------------- /utils/obscure-data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/obscure-data/Dockerfile -------------------------------------------------------------------------------- /utils/obscure-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/obscure-data/README.md -------------------------------------------------------------------------------- /utils/obscure-data/env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/obscure-data/env-sample -------------------------------------------------------------------------------- /utils/obscure-data/obscure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/obscure-data/obscure.sh -------------------------------------------------------------------------------- /utils/restore-snapshot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/restore-snapshot/Dockerfile -------------------------------------------------------------------------------- /utils/restore-snapshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/restore-snapshot/README.md -------------------------------------------------------------------------------- /utils/restore-snapshot/env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/restore-snapshot/env-sample -------------------------------------------------------------------------------- /utils/restore-snapshot/restore-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/restore-snapshot/restore-snapshot.sh -------------------------------------------------------------------------------- /utils/run-sql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/run-sql/Dockerfile -------------------------------------------------------------------------------- /utils/run-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/run-sql/README.md -------------------------------------------------------------------------------- /utils/run-sql/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/run-sql/entrypoint.sh -------------------------------------------------------------------------------- /utils/run-sql/sql/start.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/run-sql/sql/start.sql -------------------------------------------------------------------------------- /utils/start-instance/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/start-instance/Dockerfile -------------------------------------------------------------------------------- /utils/start-instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/start-instance/README.md -------------------------------------------------------------------------------- /utils/start-instance/env-sample: -------------------------------------------------------------------------------- 1 | TARGET_INSTANCE_ID= -------------------------------------------------------------------------------- /utils/start-instance/start-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/start-instance/start-instance.sh -------------------------------------------------------------------------------- /utils/stop-instance/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/stop-instance/Dockerfile -------------------------------------------------------------------------------- /utils/stop-instance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/stop-instance/README.md -------------------------------------------------------------------------------- /utils/stop-instance/env-sample: -------------------------------------------------------------------------------- 1 | TARGET_INSTANCE_ID= -------------------------------------------------------------------------------- /utils/stop-instance/stop-instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/stop-instance/stop-instance.sh -------------------------------------------------------------------------------- /utils/toolbelt/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.9 2 | 3 | RUN apk add --no-cache bash curl jq 4 | 5 | CMD ["/bin/bash"] 6 | -------------------------------------------------------------------------------- /utils/toolbelt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMIS/openlmis-ref-distro/HEAD/utils/toolbelt/README.md --------------------------------------------------------------------------------