-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.example.json
86 lines (86 loc) · 1.91 KB
/
config.example.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"configuration_provider": {
"name": "json",
"metadata": {
"config_file_location": "config.json"
}
},
"discord": {
"bot_token": "",
"guild_id": 0,
"harmony_management_role_id": 0,
"verified_role_id": 0,
"unverified_role_id": 0
},
"reddit": {
"client_id": "",
"client_secret": "",
"username": "",
"password": "",
"user_agent": "",
"subreddit_name": ""
},
"db": {
"username": "",
"password": "",
"hostname": "",
"port": 27017,
"db_name": "",
"replica_set_name": ""
},
"roles": [
{
"role_name": "Example Trade Role",
"discord_role_id": 0,
"reddit_flair_text": "Hello, World!",
"reddit_flair_css_class": "hello_world"
}
],
"schedule": {
"reddit_account_check_enabled": true,
"reddit_account_check_interval_seconds": 86400,
"reddit_account_check_reporting_channel_id": 0,
"reddit_account_check_dry_run": false,
"reddit_account_check_ban_fetch_limit": 10000,
"discord_role_check_enabled": true,
"discord_role_check_interval_seconds": 86400,
"discord_role_check_reporting_channel_id": 0,
"discord_role_check_dry_run": false,
"usl_update_enabled": true,
"usl_update_interval_seconds": 3600
},
"ebay": {
"http_proxy_url": "https://example:example@localhost:9090"
},
"verify": {
"discord_minimum_account_age_days": 3,
"reddit_minimum_account_age_days": 3,
"token_prefix": "token_"
},
"cex": {
"http_proxy_url": "https://example:example@localhost:9090"
},
"cogs": {
"load_on_startup": [
"cex-search",
"ebay-search",
"feedback",
"verify"
]
},
"message_rate_limiter": {
"limited_channels": [
{
"channel_id": 0,
"rate_limit_seconds": 3600
},
{
"channel_id": 1,
"rate_limit_seconds": 3600
}
]
},
"feedback": {
"feedback_channel_id": 0
}
}