Storage

Here you can choose how you want to save the plugin's data

# Methods
#   Local databases:
#    - SQLite
storage:
  method: SQLite
  remote:
    host: localhost
    port: 3306
    database: tchat
    username: root
    password: ""
  • storage.method: The database type.

  • storage.remote.host: The IP address of the database server.

  • storage.remote.port: The port of the database server.

  • storage.remote.database: The database name (provided by the database server).

  • storage.remote.username: The username of the database server.

  • storage.remote.password: The password of the database server.

Last updated