-
Notifications
You must be signed in to change notification settings - Fork 11
/
ExampleBotConfig.toml
46 lines (39 loc) · 1.26 KB
/
ExampleBotConfig.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
# Example BotConfig.
## Please fill it up with your own data.
## Do not commit in git.
[discord]
bot_token = "QWERTYUIOP.ASDFGHJKL.123456789"
# optional, uncomment block to use.
## You can get the IDs by right-clicking
## on your desired channels on your dev server.
# [discord.channels]
# general_channel_id = 12345678901234567890
# off_topic_channel_id = 12345678901234567890
# introduction_channel_id = 12345678901234567890
# getting_started_channel_id = 12345678901234567890
# primary_questions_channel_id = 12345678901234567890
# secondary_questions_channel_id = 12345678901234567890
# optional, uncomment block to use.
## You can create a GitHub API token
## from https://github.com/settings/tokens/new
# [github]
# api_token = "gh121345678"
# user_agent = "optimusbot"
# optional, comment it out if unused.
[meilisearch]
## This one does not need to be changed if you're developing from Gitpod.
master_key = "superCoolApiKey1234"
api_endpoint = "http://localhost:7700"
# Do not specify --http-addr, --master-key here.
# But you can specify --db-path if you want.
server_cmd = [
"meilisearch",
"--no-analytics",
"--max-indexing-memory",
"100Mb",
"--env",
"development",
]
# optional, uncomment block to use.
# [openai]
# api_key = "sk-1234567qwertyu"