Database
By default, the database does not need any extra configuration
You are able to configure the database the bot uses to your liking using these settings. Make sure you know what you are doing because the bot cannot function without a working database.
database:
# Defines which datatype should be used, choose between [NONE, SQLITE]
# ** WARNING ** if you set this to none, and no other database option is given, the process will crash on startup
use_predefined_database_sets: "SQLITE"
# ** WARNING ** When using custom, you may experience issues. This is a work in progress feature, so it is unstable, report problems on the GitHub page
# Which type of custom db should be used: [SQLITE, MYSQL, POSTGRESQL, MARIADB]
custom_type: ""
# Here you can input a custom database url to connect to. Make sure to not include https:// or http://, just use the plain url for
# database connection, e.g., < localhost:3306/test >
custom_url: ""
# Here you've input the custom db password
custom_username: ""
# Here you have to enter the password of your db session
custom_password: ""
The database does by default not need any configuration. It normally uses a sqlite database that needs no setup or changes.
If you want to change from the default sqlite database to another database.
database:
# Defines which datatype should be used, choose between [NONE, SQLITE]
# ** WARNING ** if you set this to none, and no other database option is given, the process will crash on startup
use_predefined_database_sets: "SQLITE"
# ** WARNING ** When using custom, you may experience issues. This is a work in progress feature, so it is unstable, report problems on the GitHub page
# Which type of custom db should be used: [SQLITE, MYSQL, POSTGRESQL, MARIADB]
custom_type: ""
# Here you can input a custom database url to connect to. Make sure to not include https:// or http://, just use the plain url for
# database connection, e.g., < localhost:3306/test >
custom_url: ""
# Here you've input the custom db password
custom_username: ""
# Here you have to enter the password of your db session
custom_password: ""
Last updated