Skip to content

Commit b58d3c0

Browse files
committed
Added 'application.yml'
1 parent 317bf17 commit b58d3c0

2 files changed

Lines changed: 77 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
inst/tests/test-template.R
1111
azure-pipelines.Rout
1212
tests/testthat/connection_to_datasets/local_settings.csv
13-
tests/docker/armadillo/standard/config/
1413
tests/docker/armadillo/standard/logs/
1514
tests/docker/armadillo/standard/data/
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# NOTE these settings should be similar to application.template.yml
2+
3+
armadillo:
4+
# DO NOT CHANGE
5+
docker-management-enabled: false
6+
# DO NOT CHANGE
7+
docker-run-in-container: true
8+
9+
# when running the R containers from a docker-compose.yml they get prefixes based on the directory name of the
10+
# docker-compose.yml file ie armadillo-dev-" + profileName + "-1". Same goes for Armadillo ie armadillo-dev-armadillo-1"
11+
container-prefix: 'dev-'
12+
13+
# uncomment this to configure an oidc user as admin user
14+
# oidc-admin-user: user@yourdomain.org
15+
profiles:
16+
- name: default
17+
image: datashield/rock-junction-xenon-permissive:latest
18+
port: 8085
19+
host: default
20+
package-whitelist:
21+
- dsBase
22+
- resourcer
23+
- dsMediation
24+
- dsMTLBase
25+
- dsSurvival
26+
- dsOmics
27+
function-blacklist: [ ]
28+
options:
29+
datashield:
30+
# the seed can only be 9 digits
31+
seed: 342325352
32+
33+
# required settings:
34+
spring:
35+
security:
36+
user:
37+
# please change this admin password!
38+
password: admin
39+
## uncomment oauth2 settings below to enable oidcgit
40+
# oauth2:
41+
# client:
42+
# provider:
43+
# molgenis:
44+
# issuer-uri: 'http://auth.molgenis.org'
45+
# registration:
46+
# molgenis:
47+
# client-id: '...'
48+
# client-secret: '...'
49+
# resourceserver:
50+
# jwt:
51+
# issuer-uri: 'http://auth.molgenis.org'
52+
# opaquetoken:
53+
# client-id: '...'
54+
55+
# optional settings (review spring handbook to find more):
56+
servlet:
57+
multipart:
58+
## change this if your files are bigger
59+
max-file-size: 1000MB
60+
max-request-size: 1000MB
61+
62+
storage:
63+
## to change location of the data storage
64+
root-dir: /data
65+
66+
# Match with Dockerfile volume /logs
67+
audit.log.path: '/logs/audit.log'
68+
69+
stdout.log.path: '/logs/armadillo.log'
70+
71+
logging:
72+
level:
73+
root: INFO
74+
## change to DEBUG to have more details, typically when developing
75+
org.molgenis: DEBUG
76+
## Don't log upload data
77+
org.apache.coyote.http11.Http11InputBuffer: INFO

0 commit comments

Comments
 (0)