-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Useful if you want to try things out but don't have a Directory login.
- Loading branch information
Croft
committed
May 14, 2024
1 parent
b130c61
commit 74d7279
Showing
5 changed files
with
29 additions
and
26 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 |
---|---|---|
|
@@ -45,19 +45,20 @@ We recommend using Docker for running Directory sync. | |
|
||
First, you will need to set up the environment variables for this: | ||
|
||
|Variable |Purpose |Default if not specified | | ||
|:---------------------------------|:-----------------------------------------------------|:---------------------------------| | ||
|DS_DIRECTORY_URL |Base URL of the Directory |https://directory.bbmri-eric.eu | | ||
|DS_DIRECTORY_USER_NAME |User name for logging in to Directory | | | ||
|DS_DIRECTORY_USER_PASS |Password for logging in to Directory | | | ||
|DS_DIRECTORY_DEFAULT_COLLECTION_ID|ID of collection to be used if not in samples | | | ||
|DS_DIRECTORY_MIN_DONORS |Minimum number of donors per star model hypercube |10 | | ||
|DS_DIRECTORY_MAX_FACTS |Max number of star model hypercubes to be generated | | | ||
|DS_DIRECTORY_ALLOW_STAR_MODEL |Set to 'True' to send star model info to Directory |False | | ||
|DS_FHIR_STORE_URL |URL for FHIR store |http://bridgehead-bbmri-blaze:8080| | ||
|DS_TIMER_CRON |Execution interval for Directory sync, cron format | | | ||
|DS_RETRY_MAX |Maximum number of retries when sync fails |10 | | ||
|DS_RETRY_INTERVAL |Interval between retries (seconds) |20 seconds | | ||
| Variable | Purpose |Default if not specified | | ||
|:-----------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------| | ||
| DS_DIRECTORY_URL | Base URL of the Directory |https://directory.bbmri-eric.eu | | ||
| DS_DIRECTORY_USER_NAME | User name for logging in to Directory | | | ||
| DS_DIRECTORY_USER_PASS | Password for logging in to Directory | | | ||
| DS_DIRECTORY_DEFAULT_COLLECTION_ID | ID of collection to be used if not in samples | | | ||
| DS_DIRECTORY_MIN_DONORS | Minimum number of donors per star model hypercube |10 | | ||
| DS_DIRECTORY_MAX_FACTS | Max number of star model hypercubes to be generated | | | ||
| DS_DIRECTORY_ALLOW_STAR_MODEL | Set to 'True' to send star model info to Directory |False | | ||
| DS_DIRECTORY_MOCK | Set to 'True' mock a Directory. In this mode, directory-sync will not contact the Directory. All Directory-related methods will simply return plausible fake values. |False | | ||
| DS_FHIR_STORE_URL | URL for FHIR store |http://bridgehead-bbmri-blaze:8080| | ||
| DS_TIMER_CRON | Execution interval for Directory sync, cron format | | | ||
| DS_RETRY_MAX | Maximum number of retries when sync fails |10 | | ||
| DS_RETRY_INTERVAL | Interval between retries (seconds) |20 seconds | | ||
|
||
DS_DIRECTORY_USER_NAME and DS_DIRECTORY_USER_PASS are mandatory. If you do not specify these, | ||
Directory sync will not run. Contact [Directory admin]([email protected]) to get login credentials. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,6 @@ ds: | |
allow_star_model: "False" | ||
min_donors: "10" | ||
max_facts: "-1" | ||
mock: "False" | ||
|
||
|