nicko/src/main/resources/config.yml
ineanto 83b7f90976 feat-gui-i18n: wrong branch rebase (#5)
Reviewed-on: https://ineanto.xyz/git/ineanto/nicko/pulls/5
Co-authored-by: ineanto <pantoine.rochas@gmail.com>
Co-committed-by: ineanto <pantoine.rochas@gmail.com>
2023-10-05 13:43:50 +02:00

62 lines
No EOL
1.8 KiB
YAML

# Nicko ${project.version} - Config:
############
# LANGUAGE #
############
# Nicko's messages prefix.
# Accepted values: any string
prefix: "§6Nicko §8§l| §r"
# Nicko will copy the English locale as "lang.yml"
# and will use the translations in that file when "Server Custom"
# is selected as the player's locale.
# Accepted values: false (Disabled), true (Enabled)
customLocale: false
###########
# STORAGE #
###########
# This configuration section manages SQL.
sql:
# Indicates wherever the data will be stored locally
# inside a .json file or in an SQL database.
# Accepted values: false (Disabled), true (Enabled)
enabled: false
# Toggles between the MariaDB and MySQL drivers.
# If you use the MySQL database engine, switch this to off.
# Accepted values: false (Disabled), true (Enabled)
mariadb: true
# SQL database's address
# Accepted values: valid IP address (e.g. localhost, 127.0.0.1)
address: "localhost"
# SQL database's port
# Accepted values: valid integer (e.g. 3306, 25565)
port: 3306
# SQL database's username.
# Accepted values: any string
username: "username"
# SQL database's password.
# Accepted values: any string
password: "password"
# This configuration section manages Redis (BungeeCord support).
# It is used to transfer data between multiple servers.
redis:
# Indicates wherever the data will be stored through
# Redis to transfer whenever a player switches server.
# Accepted values: false (Disabled), true (Enabled)
enabled: false
# Redis server's address
# Accepted values: valid IP address (e.g. localhost, 127.0.0.1)
address: "localhost"
# Redis server's port
# Accepted values: valid integer (e.g. 3306, 25565)
port: 6379
# Redis server's username
# Accepted values: any string
username: "username"
# Redis server's password
# Accepted values: any string
password: "password"