generated from NASA-PDS/template-repo-java
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdoi_service.env
35 lines (26 loc) · 1.41 KB
/
doi_service.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
# This file is used with docker-compose.yml to specify a number of environment
# variable key/value pairs to add to the DOI Service's environment when
# launching the container via docker compose up.
# The DOI Service prioritizes environment variables over the included INI,
# so this file may be used to inject credentials or any other supported
# options into the DOI Service when in a containerized context.
# The naming convention for expected environment variables follows from the
# format of the INI, where the section name and option name are concatenated
# with an underscore and converted to uppercase, for example:
# OSTI_USER=username -> overrides the "user" option of the [OSTI] INI section.
# If the default values from the bundled INI are desired, do not specify
# environment variables for them here or they will be overridden.
# Also note that Docker performs "no special handling of quotation marks" for
# values. This means that they become part of the value provided to the DOI Service.
# [OSTI]
OSTI_URL=https://www.osti.gov/iad2test/api/records
OSTI_USER=username
OSTI_PASSWORD=secret
# [PDS4_DICTIONARY]
PDS4_DICTIONARY_URL=https://pds.nasa.gov/pds4/pds/v1/PDS4_PDS_JSON_1D00.JSON
# [LANDING_PAGES]
LANDING_PAGES_URL=https://pds.nasa.gov/ds-view/pds/view{}.jsp?identifier={}&version={}
# [OTHER]
OTHER_PDS_REGISTRATION_DOI_TOKEN=10.17189
OTHER_LOGGING_LEVEL=DEBUG