-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.env.example
39 lines (28 loc) · 1.13 KB
/
.env.example
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
# Enables logging for the bot
RUST_LOG=rustbot=info
# The Discord bot token acquired via the Discord Developer Portal
DISCORD_TOKEN=
# ID of your Discord bot application
APPLICATION_ID=
# ID of the Moderator role. Potentially used someday for `?cleanup` command
MOD_ROLE_ID=
# ID of the Rustacean role. Used for `?rustify` command
RUSTACEAN_ROLE_ID=
# ID of the showcase channel
SHOWCASE_CHANNEL_ID=
# ID of the channel where reports are sent to. Used for `/report` command. Leave empty to disable
# `/report` command
REPORTS_CHANNEL_ID=
# ID of the channel where beginner questions are asked. Used for ``/ub` command.
BEGINNER_CHANNEL_ID=
# If running the bot for the first time, set to `true`
# otherwise, sqlx will error at compile-time if the database hasn't been set-up yet.
SQLX_OFFLINE=
# File name of the database
DATABASE_URL=sqlite:database.sqlite
# Whether to enable experimental user-specific custom prefixes
# Experimental because I haven't yet tested the performance impact of issuing an SQLite query on
# every message
CUSTOM_PREFIXES=false
# The duration to wait before refreshing the godbolt targets list
GODBOLT_UPDATE_DURATION=