Skip to content

Commit d66e289

Browse files
committed
improve description of some entries
1 parent e6a15bd commit d66e289

File tree

1 file changed

+20
-22
lines changed

1 file changed

+20
-22
lines changed

config/orront.conf

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
##############################################################################
44

55
## The ${...} substitution syntax (e.g., ${branding.instanceName}) allows to
6-
## refer # to the value assigned to a specific entry elsewhere in this file.
7-
## The ${?...} substitution syntax allows to override settings via environment
8-
## variables. See
9-
## https://github.com/typesafehub/config#optional-system-or-env-variable-overrides
6+
## refer to the value assigned to a specific entry elsewhere in this file.
7+
## See https://github.com/lightbend/config#uses-of-substitutions
108

119
## ---------------------------------------------------------------------------
1210
## There will be an "admin" user automatically created upon initial start of
@@ -27,7 +25,7 @@ admin {
2725
## User authentication
2826
auth {
2927
## (required) A strong password to generate authentication tokens.
30-
secret = "actual-strong-password"
28+
secret = "replace-with-actual-strong-password"
3129
}
3230

3331
## ---------------------------------------------------------------------------
@@ -54,11 +52,11 @@ branding {
5452

5553
## (optional) URL of image to show in the page header.
5654
## By default, this will be MMI ORR's logo.
57-
#logo = "?"
55+
#logo = "http://example.net/somelogo.png"
5856

5957
## (optional) URL for "Terms of Use" link.
6058
## No default value (so no such link is shown).
61-
#tou = "?"
59+
#tou = "http://example.net/sometou"
6260

6361
## (optional) "Contact us" link.
6462
## No default value (so no such link is shown).
@@ -96,24 +94,16 @@ mongo {
9694
port = 27017
9795
}
9896

99-
## ---------------------------------------------------------------------------
100-
## files: managed file locations.
101-
files {
102-
## DO NOT change this.
103-
baseDirectory = "/opt/orr-ont-base-directory"
104-
}
105-
10697
## ---------------------------------------------------------------------------
10798
## AllegroGraph server (which supports the triple store and SPARQL endpoint)
10899
agraph {
109-
## (required) The AG username to access the triple store
100+
## (required) The desired AG username to access the ORR triple store
110101
userName = "test"
111102

112-
## (required) The password for the AG username above:
113-
password = "actual-pw"
103+
## (required) The desired password for the AG username above:
104+
password = "replace-with-your-desired-pw"
114105

115-
## (required) Name of the AG repository for the ORR.
116-
## Can be changed if desired.
106+
## (required) Desired name for the AG repository to be used for ORR purposes.
117107
repoName = "mmiorr"
118108

119109
## (required) AGraph server host. Should be same value as indicated in
@@ -124,7 +114,7 @@ agraph {
124114
## `docker-compose.yml` for the environment of the orr service.
125115
port = 10035
126116

127-
## DO NOT change:
117+
## DO NOT change this:
128118
sparqlEndpoint = "http://"${agraph.host}":"${agraph.port}/repositories/${agraph.repoName}
129119

130120
## initDelay: (optional) Re-attempt triple store initialization after this delay.
@@ -135,15 +125,16 @@ agraph {
135125
## (Required) email related information used for user account management and
136126
## notifications.
137127
email {
138-
## (required) account used for sending emails
128+
## (required) account used for sending emails.
129+
## This account information must be valid in the server indicated below.
139130
account {
140131
username = "[email protected]"
141132
password = "actual-pw"
142133
}
143134

144135
## (required) corresponding email server for the account above.
145136
server {
146-
host = "?"
137+
host = "smtp.somewhere.example.net"
147138
port = 465
148139
prot = "smtps"
149140
debug = false
@@ -155,3 +146,10 @@ email {
155146
replyTo = ${admin.email}
156147
mailer = ${branding.instanceName}
157148
}
149+
150+
## ---------------------------------------------------------------------------
151+
## files: managed file locations.
152+
files {
153+
## DO NOT change this.
154+
baseDirectory = "/opt/orr-ont-base-directory"
155+
}

0 commit comments

Comments
 (0)