This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
medgate.dev.config
90 lines (56 loc) · 2.41 KB
/
medgate.dev.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
### System level settings used for deploying docker images
# timezone settings
TZ=Europe/London
# .specify your proxy settings
http_proxy=proxy:8080
https_proxy=proxy:8080
#no_proxy=vault,localhost,elasticsearch,tika,postgres
no_proxy=vault,localhost,elasticsearch,tika,postgres,192.168.69.5
#2.credentials for PostgreSQL instance
POSTGRES_USER=nlp
POSTGRES_PASSWORD=password123
#3.credentials for FTP server
FTP_USER=nlp
FTP_PASS=password123
#4.credentials for ElasticSearch instance
ELASTIC_USER=nlp
ELASTIC_PASSWORD=password123
### Appication level settings used inside docker containers
# uid: same as POSTGRES_USER set in #2
# password: same as POSTGRES_PASSWORD set in #2
# Eg: postgres;database=nlp;uid=nlp;password=password123;
ConnectionStrings__VersionCheckConnection=server=postgres;database=nlp;uid=nlp;password=password123;
# same as the credentials set for ElasticSearch in #4
ElasticsearchSettings__SingleNode__ElasticSearchUrl=elasticsearch:9200
ElasticsearchSettings__SingleNode__ElasticSearchUser=nlp
ElasticsearchSettings__SingleNode__ElasticSearchPassword=password123
## credentials for WebDAV server
WEBDAV_ADDRESS=https://cumulus.hiru.swan.ac.uk/remote.php/webdav/
WEBDAV_USER=nlp
# obtain a token from ownCloud
WEBDAV_PASS=password123
## Job engine settings
# Job engine worker number
SystemSettings__WorkerCount=8
# Specify HL7 export directory to enable HL7 file export. HL7 files will be stored at /medgate/hl7 by default or any other existing folders under /medgate
#SystemSettings__HL7StorePath=/medgate/hl7
## Ingression settings
# Batch size for ingression, default:20
IngressSettings__IngressBatchSize=100
# Allowed file types for ingress
#IngressSettings__ScanFileFilter=pdf,doc,docx
# Handle existing files: skip or overwrite, default:skip
#IngressSettings__HandleExistingFilesOption=skip
# Archive options for ingressed files: none, archive or delete, default:none. If archive selected, files will be archived in dir /medgate/archive
#IngressSettings__IngressArchiveOption=none
## GCP job settings
#GCP job batch size
GcpRootSettings__JobBatchSize=2000
#GCP json output handlers: normal or simple, default:normal
#GcpRootSettings__JsonOutputHandler=normal
## Settings for Vault
VaultGatewaySettings__ServerAddress=http://192.168.69.5:8200
## Settings for MedCentre
MedCentreSettings__ServerAddress=http://192.168.69.5:3002
## Settings for Kibana
KibanaSettings__ServerAddress=http://192.168.69.5:3001