-
Notifications
You must be signed in to change notification settings - Fork 3
/
application.properties
207 lines (167 loc) · 6.46 KB
/
application.properties
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# Standard webapp properties
server.servlet.contextPath=/authoring-services
server.port=8081
spring.security.user.name=user
spring.security.user.password=password
# Login and security
ims.url=https://localhost/
securityServiceStubMode=false
# Providing a value here enables SSO security
ims-security.required-role=
# Can be used to configure static SSO values for dev rather than using Nginx
authentication.override.username=
authentication.override.roles=
authentication.override.token=
# Jira for workflow
jira.url=http://localhost/
jira.username=
jira.password=
jira.consumerKey=
jira.privateKeyName=jiraKey.pem
jira.groupName=
jiraProjectFilterProductCodes=Int
jira.project.creation.defaultProjectTemplateKey=DAILYPROMO
jira.issue.custom.fields=SCA Project Locked,SCA Project Rebase,SCA Project Scheduled Rebase,SCA Project Promotion,SCA Task Promotion,SCA Project MRCM,SCA Project Templates,SCA Project Spell Check,Product Code
snowstorm.url=http://localhost:8080/snowstorm/
# Queue containing the status of a classification from snowstorm. Blank by default for backward compatibility.
classification.status.queue=
# Authoring Acceptance Gateway - for forwarding validation status updates
aag.url=
# AWS Cloud Credentials
# Instance Profile uses the credentials of the AWS instance
cloud.aws.credentials.instanceProfile=true
# Don't try to discover AWS stack information
cloud.aws.stack.auto=false
cloud.aws.region.static=us-east-1
# Storage configuration for UI state information
ui-state.storage.readonly=false
ui-state.storage.local.path=store/ui-states
ui-state.storage.useCloud=false
ui-state.storage.cloud.bucketName=
ui-state.storage.cloud.path=
# JMS
# Default is already localhost vm broker
#spring.activemq.broker-url=
spring.activemq.user=
spring.activemq.password=
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
# Task state change notification queues.
# A JMS message will be sent to each queue every time an authoring task state is changed by this service.
# An example consumer of this information is the Content Request Service.
# Comma separated list of queue names.
task-state-change.notification-queues=
# Task Review database data source
spring.datasource.url=jdbc:mysql://localhost:3306/ts_review?useSSL=false
spring.datasource.username=local
spring.datasource.password=
aws.resources.enabled=false
aws.key=blank
aws.secretKey=blank
aws.s3.spell-check.bucket=validation-resources.ihtsdo
aws.s3.spell-check.path=dev/international/spelling-dictionary.txt
aws.s3.dialect.us-to-gb-map.path=dev/international/us-to-gb-terms-map.txt
aws.s3.dialect.us-to-gb-synonyms-map.path=dev/international/us-to-gb-synonyms-map.txt
aws.s3.technical-issue-items.path=dev/international/technical-issue-items.txt
aws.s3.semantic-tag-items.path=dev/international/semantic-tags.txt
snomed.loinc.moduleId=715515008
snomed.loinc.termToExpressionRefsetId=705110001
snomed.loinc.codeSystemConceptId=705114005
snomed.loinc.originallyInLoincConceptId=705117003
ui-configuration.endpoints.loaded=true
ui-configuration.features.example=true
ui-configuration.features.externalAuthoringGroup=external-authoring-user
# Auto rebase config
scheduled.rebase.project.cron=0 0 5 * * *
auto.rebase.username=
auto.rebase.password=
# Spring email configurations
spring.mail.host=
spring.mail.port=
spring.mail.username=
spring.mail.password=
# Thymeleaf configurations
spring.thymeleaf.check-template-location=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
spring.thymeleaf.cache=true
email.link.platform.url=http://localhost/
email.user.from=no-reply
# Handles X-Forwarded-XXX headers
server.forward-headers-strategy=FRAMEWORK
# Allows spring and eleasticsearch to be circularly dependent.
spring.main.allow-circular-references=true
# Allows spring to use the full classpath for scanning.
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
# ----------------------------------------
# Logging
# Available logging levels are DEBUG, INFO, WARN, ERROR or FATAL.
# ----------------------------------------
# Authoring Services logging level.
logging.level.org.ihtsdo.authoringservices=INFO
# Spring logging level.
logging.level.org.springframework=INFO
logging.level.org.springframework.web=INFO
# Root logging level (everything else).
logging.level.root=INFO
# ----------------------------------------
# Caching
# ----------------------------------------
# Cache names
spring.cache.cache-names=classification-status
# RVF validation config
rvf.url=http://localhost:8080/api/
# Release Notes config
release-notes.url= http://localhost:8080/release-notes-service/
# AP build job message queue
sca.jms.queue.prefix = local-sca
srs.jms.queue.prefix = local-srs
# CRS config
crs.url=http://localhost:8080/ihtsdo-crs/api/
crs.int.jira.issueKey=CRT
# RVF Jira configuration
rvf.jira.url=
rvf.jira.consumerKey=
rvf.jira.privateKeyName=
rvf.jira.ticket.watcher=
rvf.jira.ticket.priority=
# Daily build storage config
dailybuild.storage.cloud.bucketName =
dailybuild.storage.cloud.path =
# ----------------------------------------
# Springdoc Swagger Config
# ----------------------------------------
# To completely hide the schemas section
springdoc.swagger-ui.defaultModelsExpandDepth=-1
# Sort by tag
springdoc.swagger-ui.tagsSorter=alpha
springdoc.swagger-ui.operationsSorter=alpha
# Hide doc expansion
springdoc.swagger-ui.docExpansion=none
# Enable tryout by default
springdoc.swagger-ui.tryItOutEnabled=true
# Disable generic response
springdoc.override-with-generic-response=false
# Expose spring-boot-actuator endpoints
springdoc.show-actuator=true
springdoc.swagger-ui.groups-order=desc
# ----------------------------------------
# Spring cloud consul config
# ----------------------------------------
spring.cloud.consul.enabled=false
#spring.cloud.consul.config.prefix=consul
#spring.application.name=authoring-services
#spring.cloud.consul.discovery.healthCheckPath=/authoring-services/version
#spring.cloud.consul.config.profile-separator=/
#spring.config.import=consul:localhost:8500
# ----------------------------------------
# Spring vault config
# ----------------------------------------
spring.cloud.vault.enabled=false
#spring.cloud.vault.token=00000000-0000-0000-0000-000000000000
#spring.cloud.vault.scheme=http
#spring.cloud.vault.kv.enabled=true
#spring.config.import=consul:localhost:8500,vault://