2023-07-25 00:35:27 +02:00
|
|
|
# ================================== #
|
|
|
|
# WinDog multi-purpose chatbot #
|
|
|
|
# Licensed under AGPLv3 by OctoSpacc #
|
|
|
|
# ================================== #
|
2024-06-19 01:40:33 +02:00
|
|
|
""" # windog config start # """
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-25 02:08:49 +02:00
|
|
|
# If you have modified the bot's code, you should set this.
|
2024-06-17 00:32:03 +02:00
|
|
|
ModifiedSourceUrl = ""
|
2024-06-15 02:08:09 +02:00
|
|
|
|
2024-06-25 02:08:49 +02:00
|
|
|
# Logging of system information and runtime errors. Recommended to be on at least for console.
|
2024-06-19 01:40:33 +02:00
|
|
|
LogToConsole = True
|
|
|
|
LogToFile = True
|
2024-06-17 00:32:03 +02:00
|
|
|
|
2024-06-25 02:08:49 +02:00
|
|
|
# Dumping of the bot's remote events. Should stay off unless needed for debugging.
|
2024-06-19 01:40:33 +02:00
|
|
|
DumpToConsole = False
|
|
|
|
DumpToFile = False
|
2023-07-25 00:35:27 +02:00
|
|
|
|
2024-06-30 01:42:37 +02:00
|
|
|
AdminIds = [ "telegram:123456789", "telegram:634314973", "matrix:@admin:matrix.example.com", "matrix:@octt:matrix.org", "activitypub:admin@mastodon.example.com", ]
|
2023-11-19 00:27:51 +01:00
|
|
|
|
2024-06-30 01:42:37 +02:00
|
|
|
BridgesConfig = []
|
|
|
|
|
|
|
|
DefaultLanguage = "en"
|
2023-07-25 00:35:27 +02:00
|
|
|
Debug = False
|
2024-06-16 01:40:30 +02:00
|
|
|
CmdPrefixes = ".!/"
|
|
|
|
WebUserAgent = "WinDog v.Staging"
|
2023-11-18 01:27:42 +01:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
#ModuleGroups = (ModuleGroups | {
|
|
|
|
ModuleGroups = {
|
2024-06-17 00:32:03 +02:00
|
|
|
"Basic": "",
|
|
|
|
"Geek": "",
|
2024-06-19 01:40:33 +02:00
|
|
|
}
|
2024-06-17 00:32:03 +02:00
|
|
|
|
2024-06-19 01:40:33 +02:00
|
|
|
# Only for the platforms you want to use, uncomment the below credentials and fill with your own:
|
|
|
|
""" # end windog config # """
|