-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoo.toml
74 lines (64 loc) · 2.09 KB
/
moo.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
#==========#
# moo.toml #
#==========#
# This is `moo`'s config file.
# It is in the TOML (https://en.wikipedia.org/wiki/TOML) format.
#
# Values will be loaded from this file on startup.
#----------------------------------------------------------#
# AUTHENTICATION #
#----------------------------------------------------------#
# The correct pass for the `@moo:monero.social` account.
#
# Any value within the `MOO_PASSWORD` environment
# variable will override this.
#
# TYPE | string
password = ""
# A valid GitHub API token (with all permissions)
# for <https://github.com/moo900>.
#
# Any value within the `MOO_GITHUB_TOKEN` environment
# variable will override this.
#
# TYPE | string
token = ""
#----------------------------------------------------------#
# AUTHORIZATION #
#----------------------------------------------------------#
# Accounts that `moo` will respond to.
#
# TYPE | array of strings, must be fully specified Matrix IDs
allowed_users = [
"@hinto:monero.social",
"@boog900:monero.social",
"@syntheticbird:monero.social",
]
#----------------------------------------------------------#
# AUTOMATION #
#----------------------------------------------------------#
# Every `sweeper` seconds, `moo` will
# automatically run the `!sweep` command.
#
# If this is set to `0`, this will be disabled.
#
# TYPE | unsigned integer (seconds)
sweeper = 86400 # 1 day
# Automatically run the `!sweep` command on `moo` startup.
#
# DEFAULT | true
# TYPE | boolean
sweep_on_startup = true
#----------------------------------------------------------#
# LOGGING #
#----------------------------------------------------------#
# The logging level `moo` will use.
#
# "error" will only show critical error messages,
# "warn" will in addition show warnings,
# "info" will in addition show info, etc, etc.
#
# DEFAULT | "trace"
# VALUES | "off", "error", "warn", "info", "debug", "trace"
# TYPE | string, one of the above
log_level = "trace"