WinDog/LibWinDog/Config.py

35 lines
990 B
Python
Raw Normal View History

2023-07-25 00:35:27 +02:00
# ================================== #
# WinDog multi-purpose chatbot #
# Licensed under AGPLv3 by OctoSpacc #
# ================================== #
# If you have modified the bot's code, you should set this
ModifiedSourceUrl = ""
# Only for the platforms you want to use, uncomment the below credentials and fill with your own:
2023-07-25 00:35:27 +02:00
# MastodonUrl = "https://mastodon.example.com"
# MastodonToken = ""
# MatrixUrl = "https://matrix.example.com"
# MatrixUsername = "username"
# MatrixPassword = "hunter2"
# TelegramToken = "1234567890:abcdefghijklmnopqrstuvwxyz123456789"
2023-07-25 00:35:27 +02:00
AdminIds = [ "123456789@telegram", "634314973@telegram", "admin@activitypub@mastodon.example.com", ]
2023-11-19 00:27:51 +01:00
DefaultLang = "en"
2023-07-25 00:35:27 +02:00
Debug = False
Dumper = False
CmdPrefixes = ".!/"
2023-07-25 00:35:27 +02:00
# False: ASCII output; True: ANSI Output (must be escaped)
ExecAllowed = {"date": False, "fortune": False, "neofetch": True, "uptime": False}
WebUserAgent = "WinDog v.Staging"
ModuleGroups = (ModuleGroups | {
"Basic": "",
"Geek": "",
})