This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_kachery.json
54 lines (54 loc) · 1.69 KB
/
example_kachery.json
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
{
"channels": [
{
"name": "name-of-channel",
"password": "password-for-channel",
"downloadQuotas": [
{
"name": "small",
"maxFileSize": 1e6,
"maxSimultaneous": 2,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 1e9
},
{
"name": "medium",
"maxSimultaneous": 2,
"maxFileSize": 100e6,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 1e9
},
{
"name": "large",
"maxFileSize": 100e9,
"maxSimultaneous": 2,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 100e9
}
],
"uploadQuotas": [
{
"name": "small",
"maxFileSize": 1e6,
"maxSimultaneous": 2,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 1e9
},
{
"name": "medium",
"maxFileSize": 100e6,
"maxSimultaneous": 2,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 1e9
},
{
"name": "large",
"maxFileSize": 100e9,
"maxSimultaneous": 2,
"maxNumFilesPerDay": 10000,
"maxNumBytesPerDay": 100e9
}
]
}
]
}