-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into CU-86byv0cyf_Add-initial-package-and-configu…
…ration-files-for-FHIR-info-Gateway
- Loading branch information
Showing
18 changed files
with
135 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,51 @@ | ||
# Test environment vars for remote deployment - change the values below to point to your deployed instances | ||
# General | ||
|
||
CLUSTERED_MODE=true | ||
CLUSTERED_MODE=false | ||
|
||
OPENHIM_CORE_SERVICE_NAME=<openhim_hostname> | ||
OPENHIM_TRANSACTION_API_PORT=<port> | ||
OPENHIM_MEDIATOR_API_PORT=<OPENHIM_MEDIATOR_API_PORT> | ||
MOCK_SERVER_HOST=<mock_service_hostname> | ||
MOCK_SERVER_PORT=<port> | ||
# Log | ||
|
||
# Analytics Datastore - Elastic Search | ||
ES_HOSTS="\"analytics-datastore-elastic-search-01:9200","analytics-datastore-elastic-search-02:9200","analytics-datastore-elastic-search-03:9200\"" | ||
DEBUG=0 | ||
BASHLOG_FILE=0 | ||
BASHLOG_FILE_PATH=platform.log | ||
|
||
# Analytics Datastore - Clickhouse | ||
CLICKHOUSE_HOST=analytics-datastore-clickhouse-01 | ||
# Data Mapper - Logstash | ||
|
||
# FHIR Datastore - HAPI FHIR | ||
HAPI_FHIR_INSTANCES=3 | ||
HF_MAX_POOL_SIZE=30 | ||
REPMGR_PARTNER_NODES=postgres-1,postgres-2,postgres-3 | ||
POSTGRES_REPLICA_SET=postgres-1:5432,postgres-2:5432,postgres-3:5432 | ||
HAPI_DB_SET=postgres-1:5432,postgres-2:5432,postgres-3:5432 | ||
LOGSTASH_DEV_MOUNT=false | ||
LOGSTASH_PACKAGE_PATH= | ||
|
||
# Interoperability Layer - OpenHIM | ||
MONGO_SET_COUNT=3 | ||
OPENHIM_MONGO_URL=mongodb://mongo-1:27017,mongo-2:27017,mongo-3:27017/openhim?replicaSet=mongo-set | ||
OPENHIM_MONGO_ATNAURL=mongodb://mongo-1:27017,mongo-2:27017,mongo-3:27017/openhim?replicaSet=mongo-set | ||
# Dashboard Visualiser - JS Report | ||
|
||
## !NOTE: MAKE SURE YOU HAVE RUN 'set-permissions.sh' SCRIPT BEFORE AND AFTER RUNNING JS REPORT | ||
JS_REPORT_DEV_MOUNT=false | ||
JS_REPORT_PACKAGE_PATH= | ||
|
||
# Message Bus - Kafka | ||
# Topics should comma seperated, optional include partion and repliction values | ||
# e.g. <topic>:<partions>:<replicationFactor> -> test:3:2 (defaults to <topics>:3:1) | ||
KAFKA_TOPICS=2xx,reprocess,3xx,metrics:3:1 | ||
|
||
# !NOTE: Topics should comma seperated, optional include partion and repliction values | ||
# e.g. <topic>:<partions>:<replicationFactor> -> test:3:2 (defaults to <topics>:3:1) | ||
# KAFKA_TOPICS=2xx,reprocess,3xx,metrics:3:1 | ||
KAFKA_TOPICS=2xx,2xx-async,reprocess,3xx,metrics:3:3,patient,observation | ||
|
||
OPENHIM_CORE_MEDIATOR_HOSTNAME=openhimcomms.<domain> | ||
OPENHIM_MEDIATOR_API_PORT=443 | ||
|
||
# Reverse Proxy - Nginx | ||
REVERSE_PROXY_INSTANCES=1 | ||
DOMAIN_NAME=<domain> | ||
SUBDOMAINS=openhimcomms.<domain>,openhimcore.<domain>,openhimconsole.<domain>,kibana.<domain>,reports.<domain>,santewww.<domain>,santempi.<domain>,superset.<domain>,keycloak.<domain>,grafana.<domain>,minio.<domain>,jempi-web.<domain>,jempi-api.<domain> | ||
STAGING=false | ||
INSECURE=false | ||
|
||
# Identity Access Manager - Keycloak | ||
KC_FRONTEND_URL=https://keycloak.<domain> | ||
KC_GRAFANA_ROOT_URL=https://grafana.<domain> | ||
KC_JEMPI_ROOT_URL=https://jempi-web.<domain> | ||
KC_SUPERSET_ROOT_URL=https://superset.<domain> | ||
KC_OPENHIM_ROOT_URL=https://openhimconsole.<domain> | ||
GF_SERVER_DOMAIN=grafana.<domain> | ||
|
||
REACT_APP_JEMPI_BASE_API_HOST=https://jempi-api.<domain> | ||
REACT_APP_JEMPI_BASE_API_PORT=443 | ||
OPENHIM_CONSOLE_BASE_URL=https://openhimconsole.<domain> | ||
OPENHIM_API_HOST=https://openhimcore.<domain> | ||
OPENHIM_API_PORT=443 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
description: This page gives a list of common command and examples for easy reference | ||
--- | ||
|
||
# 🗒️ Cheat sheet | ||
|
||
#### Install the latest Instant OpenHIE binary locally: | ||
|
||
```bash | ||
sudo curl -L https://github.com/openhie/instant-v2/releases/latest/download/instant-linux -o /usr/local/bin/instant | ||
``` | ||
|
||
#### Launch a particular package (with metadata initialisation): | ||
|
||
```bash | ||
instant package init -n <package_name> | ||
``` | ||
|
||
#### Stop a particular package: | ||
|
||
```bash | ||
instant package down -n <package_name> | ||
``` | ||
|
||
#### Start a particular package (WITHOUT metadata initialisation): | ||
|
||
```bash | ||
instant package up -n <package_name> | ||
``` | ||
|
||
#### Destroy (delete all data too) a particular package: | ||
|
||
```bash | ||
instant package destroy -n <package_name> | ||
``` | ||
|
||
#### Launch a particular recipe (with metadata initialisation) using profiles (which are defined in the config.yaml file): | ||
|
||
```bash | ||
instant package init -p <profile_name> | ||
``` | ||
|
||
#### Stop a particular recipe: | ||
|
||
```bash | ||
instant package down -p <profile_name> | ||
``` | ||
|
||
#### Start a particular recipe (WITHOUT metadata initialisation): | ||
|
||
```bash | ||
instant package up -p <profile_nameage_name> | ||
``` | ||
|
||
#### Destroy (delete all data too) a particular recipe: | ||
|
||
```bash | ||
instant package destroy -p <profile_name> | ||
``` | ||
|
||
#### Add --dev to any \`instant\` command to expose development ports to the host for packages | ||
|
||
```bash | ||
instant package init ... --dev | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
description: Various notes and guide | ||
--- | ||
|
||
# Guides | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters