-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.example.toml
86 lines (79 loc) · 3.93 KB
/
settings.example.toml
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
################################################################
# allies | list | list of org handles that are allies #
# ------------------------------------------------------------ #
# enimies | list | list of org handles that are enimies #
# ------------------------------------------------------------ #
# rsi_org_sid | string | the org's handle running this bot #
################################################################
allies = []
ally_role = "ally"
enimies = []
rsi_org_sid = "MYORG"
################################################################
# log #
# ------------------------------------------------------------ #
# debug | bool | enable debug logs. false by default #
# cli | bool | log to the cli. false by default #
################################################################
[LOG]
debug = false
cli = false
################################################################
# mongo #
# ------------------------------------------------------------ #
# host | string | The host of the mongo server #
# port | string | port of the mongo server #
# database | string | name of the database. defaults to "org" #
################################################################
[mongo]
host = "localhost"
port = "27017"
database = "MyOrg"
################################################################
# features.events #
# ------------------------------------------------------------ #
# enabled | bool | false | enable events #
################################################################
[features.monitor]
enabled = false
################################################################
# features.merit #
# ------------------------------------------------------------ #
# enabled | bool | false | enable events #
# holders | string array | | The bank holders #
################################################################
[features.merit]
enabled = false
################################################################
# features.attendance #
# ------------------------------------------------------------ #
# enabled | bool | false | enable attendance #
# allowed_roles | string array | | Role names that can #
# | | | take attendance #
# channel_id | string | | Channel id to post #
# | | | attendance records to #
################################################################
[features.attendance]
enabled = false
allowed_roles = []
channel_id = "000000000000000004"
################################################################
# rsi #
# ------------------------------------------------------------ #
# token | string | rsi login token #
# device | string | rsi login device #
################################################################
[rsi]
token = "supersecrettoken"
device = "supersecretdevice"
################################################################
# discord #
# ------------------------------------------------------------ #
# client_id | string | discord application client id #
# client_secret | string | discrod application client secret #
# guild_id | string | guild id to use for this tool #
################################################################
[discord]
client_id = "givenclientid"
client_secret = "supersecretapplicationcode"
guild_id = "guildid"