| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [MYANIMEBOT]
- # Level of log, could be DEBUG, INFO, ERROR...
- # Only impact the logs in the DB and the logfile, the console stay in INFO
- logLevel = INFO
- # Path of the log file
- logPath = myanimebot.log
- # Database configuration
- mariadb.host = $DB_HOST
- mariadb.user = $DB_USER
- mariadb.password = $DB_PASSWORD
- mariadb.name = $DB_NAME
- # SSL configuration for MariaDB
- mariadb.ssl = false
- mariadb.ssl.ca =
- mariadb.ssl.cert =
- mariadb.ssl.key =
- # timezone (should be the same as the DB and your Linux system)
- timezone = Europe/Paris
- # New feed since this number of minutes will be displayed (useful when the bot crashed for a long period)
- secondMax = 7200
- # How much time should the bot need to wait between fetches
- anilist_seconds_between_fetches = 60
- # Delay (in seconds) between each requests on MAL website (increase this value in case of timeout)
- myanimelist_seconds_between_requests = 2
- # Discord Token
- token = $DISCORD_TOKEN
- # Prefix used by the bot
- prefix = !mab
- # Bot icons
- iconMAL = https://cdn.myanimelist.net/img/sp/icon/apple-touch-icon-256.png
- iconAniList = https://anilist.co/img/icons/android-chrome-512x512.png
- iconBot = http://myanimebot.pentou.eu/rsc/bot_avatar.jpg
- # Healthcheck web page configuration
- # TO BE USED FOR INTERNAL USE ONLY, NOT PRODUCTION READY
- healthcheck_enabled = false
- healthcheck_port = 15200
- healthcheck_ip = 127.0.0.1
|