- Moved MySQL configuration to a separated file (mysql.yml).
Changes in config.yml
Code (YAML):
# Should we enable support for MySQL?
mysql-enabled
: false
New file: mysql.yml
Code (YAML):
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# MySQL Configuration #
# #
# Enable MySQL from config.yml before editing this file #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# The address of the MySQL database.
address
: jdbc:mysql://localhost:3306/root?useSSL=false&autoReConnect=true
# The username to connect to the database.
user
: root
# The password to connect to the database.
password
: <your_password
>
# The table name to store plugin data in.
table
: eastereggs