-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env
35 lines (28 loc) · 1.29 KB
/
.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
# URL for FHIR validator service
VALIDATOR_URL=http://localhost/validatorapi
REDIS_URL=redis://localhost:6379/0
FHIR_RESOURCE_VALIDATOR_URL=http://localhost/hl7validatorapi
FHIRPATH_URL=http://localhost/fhirpath
# The base path where inferno will be hosted. Leave blank to host inferno at the
# root of its host.
# BASE_PATH=inferno
# Set the scheme/host for inferno. Tests which need an absolute url for an
# inferno route will use this value for the scheme/host.
# INFERNO_HOST=http://localhost:4567
# When false, test will run synchronously rather than asynchronously via sidekiq
# ASYNC_JOBS=false
# Set to true to display the entire request/response body for each incoming HTTP
# request in the logs.
# VERBOSE_REQUEST_LOGGING=true
# Set the maximum number of times inferno will try to connect to the database when
# it starts, and the delay in seconds between retries. These are the default
# values.
# MAX_DB_CONNECTION_ATTEMPTS=10
# DB_CONNECTION_RETRY_DELAY=5
# Set how many validator sessions to create in parallel at startup. Session
# creation in the validator is not completely thread safe, so values greater
# than 1 could cause issues.
# VALIDATOR_SESSIONS_CONCURRENCY=1
# Set to false to skip initializing validator sessions in the hl7 validator
# service.
# INITIALIZE_VALIDATOR_SESSIONS=false