🎞️Database

This is where all the information about the players is going to be saved

If you dont know what is this, dont touch it, it is not necessary to change.

This plugin supports SQLITE (by default) and MYSQL, where you have to set all the credentials

config.yml
database:
  type: SQLITE # Valid types: SQLITE, MYSQL
  sqlite-file: "database.db"
  mysql:
    host: localhost
    port: 3306
    database: discordbridge
    username: user
    password: pass

Last updated