mirror of
https://gitlab.com/octospacc/WinDog.git
synced 2025-06-05 22:09:20 +02:00
35 lines
1017 B
Python
Executable File
35 lines
1017 B
Python
Executable File
# ================================== #
|
|
# WinDog multi-purpose chatbot #
|
|
# Licensed under AGPLv3 by OctoSpacc #
|
|
# ================================== #
|
|
""" # windog config start # """
|
|
|
|
# If you have modified the bot's code, you should set this.
|
|
ModifiedSourceUrl = ""
|
|
|
|
# Logging of system information and runtime errors. Recommended to be on at least for console.
|
|
LogToConsole = True
|
|
LogToFile = True
|
|
|
|
# Dumping of the bot's remote events. Should stay off unless needed for debugging.
|
|
DumpToConsole = False
|
|
DumpToFile = False
|
|
|
|
AdminIds = [ "telegram:123456789", "telegram:634314973", "matrix:@admin:matrix.example.com", "matrix:@octt:matrix.org", "activitypub:admin@mastodon.example.com", ]
|
|
|
|
BridgesConfig = []
|
|
|
|
DefaultLanguage = "en"
|
|
Debug = False
|
|
CmdPrefixes = ".!/"
|
|
WebUserAgent = "WinDog v.Staging"
|
|
|
|
#ModuleGroups = (ModuleGroups | {
|
|
ModuleGroups = {
|
|
"Basic": "",
|
|
"Geek": "",
|
|
}
|
|
|
|
# Only for the platforms you want to use, uncomment the below credentials and fill with your own:
|
|
""" # end windog config # """
|