-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbackend_config.json
More file actions
42 lines (42 loc) · 1.31 KB
/
backend_config.json
File metadata and controls
42 lines (42 loc) · 1.31 KB
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
{
"dataverseServer": "http://dataverse:8080",
"redisHost": "cache:6379",
"options": {
"dataverseExternalUrl": "http://localhost:8080",
"rootDataverseId": "root",
"myDataRoleIds": [6,7],
"defaultDriver": "s3",
"storageId": "minio1",
"pathToApiKey": "/run/secrets/api/adminkey",
"pathToUnblockKey": "/run/secrets/api/key",
"pathToOauthSecrets": "/dsdata/example_oauth_secrets.json",
"s3Config": {
"awsEndpoint": "http://minio:9000",
"awsRegion": "us-east-1",
"awsPathstyle": true,
"awsBucket": "mybucket"
},
"computationQueues": [
{
"label": "Default queue",
"value": "default",
"fileExtensions": ["r", "py"]
}, {
"label": "GPU cluster",
"value": "cuda",
"fileExtensions": ["py"]
}, {
"label": "R queue",
"value": "r",
"fileExtensions": ["r"]
}
],
"computationAccessConfig": [
{
"userEmail": "rdrResearcher@kuleuven.be",
"queue": ["default", "r"]
}
],
"globusWebAppUrl": "https://app.globus.org/activity"
}
}