-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
51 lines (45 loc) · 871 Bytes
/
config.example.json
File metadata and controls
51 lines (45 loc) · 871 Bytes
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
{
"log_level": "info",
"database_options": {
"max_connections": 5,
"database_url": ""
},
"seeding_options": {
"players": 2500,
"records": 100000,
"record_status_distribution": {
"approved": 35,
"rejected": 50,
"under_consideration": 10,
"submitted": 5
},
"record_progress_distribution": {
"complete": 98,
"incomplete": 2
},
"demons": 400,
"creators_per_demon": {
"start": 1,
"end": 5
},
"submitters": 90000
},
"output_options": {
"players": {
"generate_new": true,
"use_existing": false
},
"demons": {
"generate_new": true,
"use_existing": false
},
"submitters": {
"generate_new": true,
"use_existing": false
},
"records": {
"generate_new": true,
"use_existing": false
}
}
}