-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.env
44 lines (32 loc) · 1.2 KB
/
sample.env
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
# FHIR Configuration
## The FHIR server serving CPG-on-EBM-on-FHIR resources
CELIDA_EE_FHIR_BASE_URL=http://localhost:8000/fhir
## A FHIR terminology server
CELIDA_EE_FHIR_TERMINOLOGY_SERVER_URL=http://tx.fhir.org/r4
# OMOP Configuration
## OMOP Database Username
CELIDA_EE_OMOP__USER=postgres
## OMOP Database Password
CELIDA_EE_OMOP__PASSWORD=<your_password>
## OMOP Database Host
CELIDA_EE_OMOP__HOST=localhost
## OMOP Database Port
CELIDA_EE_OMOP__PORT=5432
## OMOP Database
CELIDA_EE_OMOP__DATABASE=ohdsi
## OMOP Database Schema
CELIDA_EE_OMOP__DATA_SCHEMA=cds_cdm
## Execution Engine Result Schema
CELIDA_EE_OMOP__RESULT_SCHEMA=celida
CELIDA_EE_OMOP__RESULT_SCHEMA=celida
# Execution Engine Configuration
## Timezone used for date/time calculations
CELIDA_EE_TIMEZONE=Europe/Berlin
## Episode of Care Mapping Table
## Set 1 to Use VISIT_DETAIL for episode of care mappings instead of VISIT_OCCURRENCE
CELIDA_EE_EPISODE_OF_CARE_VISIT_DETAIL=0
# Parallel processing options
# Set 1 if multiprocessing (parallelization) should be used, 0 otherwise
CELIDA_EE_MULTIPROCESSING_USE=0
# Set number of workers in multiprocessing pool. Use -1 to use number of available cpu cores.
CELIDA_EE_MULTIPROCESSING_POOL_SIZE=-1