Database
Storage location for important player information
You can use environment variables in the database fields, for example ${VALUE}
⚙️ Setting
Pathconfig.yml → database
database:
ignore_existing_driver: false
type: "H2"
name: "flectonepulse"
host: "127.0.0.1"
port: "3306"
user: "root"
password: "1234"
parameters: "?autoReconnect=true&useSSL=false&useUnicode=true&characterEncoding=UTF-8"
prefix: ""ignore_existing_driver
Whether to download the database library even if it already exists on the server.
This can solve issues where other plugins use an outdated library and FlectonePulse cannot start correctly.
type
The type of database used; currently supported types are:
| Type | Explanation |
|---|---|
SQLite | Local, stored as a file |
MySQL | Server-based, requires connection |
MariaDB | Server-based, requires connection |
H2 | Local, stored as a file |
PostgreSQL | Server-based, requires connection |
name
Database name
host
Address of the server where the database is located
port
Connection port for the database on the server
user
Username to be used for connecting to the database
password
Password for connecting to the database
parameters
Database connection parameters
prefix
If you change the prefix, the tables will be new and previous player data will not be used.
Prefix for database tables; if empty, the fp_ prefix will be used.
Last updated on
Edit on GitHub
FlectonePulse