|
| 1 | +## |
| 2 | +## Copyright 2022 Karlsruhe Institute of Technology. |
| 3 | +## Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +## you may not use this file except in compliance with the License. |
| 5 | +## You may obtain a copy of the License at |
| 6 | +## |
| 7 | +## http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +## |
| 9 | +## Unless required by applicable law or agreed to in writing, software |
| 10 | +## distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +## See the License for the specific language governing permissions and |
| 13 | +## limitations under the License. |
| 14 | +## |
1 | 15 | #
|
2 |
| -# Copyright 2022 Karlsruhe Institute of Technology. |
3 |
| -# Licensed under the Apache License, Version 2.0 (the "License"); |
4 |
| -# you may not use this file except in compliance with the License. |
5 |
| -# You may obtain a copy of the License at |
| 16 | +## General Spring Boot Settings (do not change!) |
| 17 | +#spring.main.allow-bean-definition-overriding=true |
| 18 | +#spring.main.allow-circular-references=true |
| 19 | +#server.port=8095 |
| 20 | +## Data transfer settings, e.g. transfer compression and multipart message size. |
| 21 | +## The properties max-file-size and max-request-size define the maximum size of files |
| 22 | +## transferred to and from the repository. Setting them to -1 removes all limits. |
| 23 | +#server.compression.enabled=false |
| 24 | +#spring.servlet.multipart.max-file-size=100MB |
| 25 | +#spring.servlet.multipart.max-request-size=100MB |
| 26 | +## Logging settings |
| 27 | +#logging.level.root=ERROR |
| 28 | +#logging.level.edu.kit.datamanager=INFO |
| 29 | +#springdoc.swagger-ui.disable-swagger-default-url=true |
| 30 | +## Actuator settings |
| 31 | +#info.app.name=Mapping-Service |
| 32 | +#info.app.description=Generic mapping service supporting different mapping implementations. |
| 33 | +#info.app.group=edu.kit.datamanager |
| 34 | +#info.app.version=1.0.0 |
| 35 | +#management.endpoint.health.probes.enabled=true |
| 36 | +#management.endpoints.web.exposure.include=* |
6 | 37 | #
|
7 |
| -# http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| -# |
9 |
| -# Unless required by applicable law or agreed to in writing, software |
10 |
| -# distributed under the License is distributed on an "AS IS" BASIS, |
11 |
| -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 |
| -# See the License for the specific language governing permissions and |
13 |
| -# limitations under the License. |
14 |
| -# |
15 |
| - |
16 |
| -# General Spring Boot Settings (do not change!) |
17 |
| -spring.main.allow-bean-definition-overriding=true |
18 |
| -spring.main.allow-circular-references=true |
19 |
| -server.port=8095 |
20 |
| -# Data transfer settings, e.g. transfer compression and multipart message size. |
21 |
| -# The properties max-file-size and max-request-size define the maximum size of files |
22 |
| -# transferred to and from the repository. Setting them to -1 removes all limits. |
23 |
| -server.compression.enabled=false |
24 |
| -spring.servlet.multipart.max-file-size=100MB |
25 |
| -spring.servlet.multipart.max-request-size=100MB |
26 |
| -# Logging settings |
27 |
| -logging.level.root=ERROR |
28 |
| -logging.level.edu.kit.datamanager=INFO |
29 |
| -springdoc.swagger-ui.disable-swagger-default-url=true |
30 |
| -# Actuator settings |
31 |
| -info.app.name=Mapping-Service |
32 |
| -info.app.description=Generic mapping service supporting different mapping implementations. |
33 |
| -info.app.group=edu.kit.datamanager |
34 |
| -info.app.version=1.0.0 |
35 |
| -management.endpoint.health.probes.enabled=true |
36 |
| -management.endpoints.web.exposure.include=* |
37 |
| - |
38 |
| -################################################## |
39 |
| -# Mapping-Service specific settings |
40 |
| -################################################## |
41 |
| -# Absolute path to the local python interpreter |
42 |
| -mapping-service.pythonLocation=file:///C:/hostedtoolcache/windows/Python/3.9.13/x64/python.exe |
43 |
| -# Absolute path to the local gemma mappings folder |
44 |
| -mapping-service.mappingSchemasLocation=file:mapping-service |
| 38 | +################################################### |
| 39 | +## Mapping-Service specific settings |
| 40 | +################################################### |
| 41 | +## Absolute path to the local python interpreter |
| 42 | +#mapping-service.pythonLocation=file:///C:/hostedtoolcache/windows/Python/3.9.13/x64/python.exe |
| 43 | +## Absolute path to the local gemma mappings folder |
| 44 | +#mapping-service.mappingSchemasLocation=file:mapping-service |
0 commit comments